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,10 @@
using System.Collections.Generic;
namespace DiscImageChef.Server.Models
{
public class IdHashModelForView
{
public List<IdHashModel> List { get; set; }
public string Json { get; set; }
}
}