Add statistics for remote to DTO.

This commit is contained in:
2019-12-04 18:35:20 +00:00
parent 16f61defb8
commit 88268b5cc8

View File

@@ -68,15 +68,18 @@ namespace DiscImageChef.CommonTypes.Metadata
public class StatsDto
{
public List<NameValueStats> Commands { get; set; }
public List<OsStats> OperatingSystems { get; set; }
public List<NameValueStats> Versions { get; set; }
public List<NameValueStats> Filesystems { get; set; }
public List<NameValueStats> Partitions { get; set; }
public List<NameValueStats> MediaFormats { get; set; }
public List<NameValueStats> Filters { get; set; }
public List<DeviceStats> Devices { get; set; }
public List<MediaStats> Medias { get; set; }
public List<NameValueStats> Commands { get; set; }
public List<OsStats> OperatingSystems { get; set; }
public List<NameValueStats> Versions { get; set; }
public List<NameValueStats> Filesystems { get; set; }
public List<NameValueStats> Partitions { get; set; }
public List<NameValueStats> MediaFormats { get; set; }
public List<NameValueStats> Filters { get; set; }
public List<DeviceStats> Devices { get; set; }
public List<MediaStats> Medias { get; set; }
public List<OsStats> RemoteApplications { get; set; }
public List<NameValueStats> RemoteArchitectures { get; set; }
public List<OsStats> RemoteOperatingSystems { get; set; }
}
public class CommandsStats