From 765b4e8235c37b12ff9d5e85c564b4bd09650f45 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 21 Dec 2018 18:17:49 +0000 Subject: [PATCH] Upload statistics from the database. --- Metadata/Statistics.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Metadata/Statistics.cs b/Metadata/Statistics.cs index 3b7ef36ce..f252783da 100644 --- a/Metadata/Statistics.cs +++ b/Metadata/Statistics.cs @@ -66,6 +66,19 @@ namespace DiscImageChef.CommonTypes.Metadata public VerifyStats Verify { get; set; } } + public class StatsDto + { + public List Commands { get; set; } + public List OperatingSystems { get; set; } + public List Versions { get; set; } + public List Filesystems { get; set; } + public List Partitions { get; set; } + public List MediaFormats { get; set; } + public List Filters { get; set; } + public List Devices { get; set; } + public List Medias { get; set; } + } + public class CommandsStats { public long Analyze;