Add option to consolidate duplicate ATA entities.

This commit is contained in:
2019-11-09 19:23:49 +00:00
parent d3b59108df
commit f7ea40cfb0
8 changed files with 172 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
namespace DiscImageChef.Server.Models
{
public class IdHashModel
{
public IdHashModel(int id, string hash)
{
Id = id;
Hash = hash;
}
public int Id { get; set; }
public string Hash { get; set; }
public string Description { get; set; }
public int[] Duplicates { get; set; }
}
}