Store statistics on server database.

This commit is contained in:
2018-12-22 03:46:48 +00:00
parent 72f31d0bcd
commit 414cbf73c0
15 changed files with 381 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations;
namespace DiscImageChef.Server.Models
{
public class OperatingSystem
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public string Version { get; set; }
public long Count { get; set; }
}
}