Add NameCountModel.

This commit is contained in:
2019-12-07 18:38:11 +00:00
parent c579fdb491
commit 58a589bb27
12 changed files with 1555 additions and 42 deletions

View File

@@ -30,16 +30,7 @@
// Copyright © 2011-2019 Natalia Portillo
// ****************************************************************************/
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; }
public ulong Count { get; set; }
}
public class Version : NameCountModel<int> { }
}