mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add NameCountModel.
This commit is contained in:
@@ -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> { }
|
||||
}
|
||||
Reference in New Issue
Block a user