Move version statistics to database.

This commit is contained in:
2018-12-21 04:17:14 +00:00
parent 4f445e53c3
commit 94b60395ec
8 changed files with 1463 additions and 18 deletions

View File

@@ -0,0 +1,12 @@
using System.ComponentModel.DataAnnotations;
namespace DiscImageChef.Database.Models
{
public class Version
{
[Key]
public int Id { get; set; }
public string Value { get; set; }
public bool Synchronized { get; set; }
}
}