mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Add option to consolidate duplicate ATA entities.
This commit is contained in:
16
DiscImageChef.Server/Models/IdHashModel.cs
Normal file
16
DiscImageChef.Server/Models/IdHashModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user