Files
Aaru.Server/DiscImageChef.Server/Models/IdHashModel.cs
2019-12-03 21:08:14 +00:00

15 lines
360 B
C#

namespace DiscImageChef.Server.Models
{
public class IdHashModel : BaseModel<int>
{
public IdHashModel(int id, string hash)
{
Id = id;
Hash = hash;
}
public string Hash { get; set; }
public string Description { get; set; }
public int[] Duplicates { get; set; }
}
}