Add ATA comparer.

This commit is contained in:
2019-11-09 23:49:48 +00:00
parent 77090f12c6
commit 0467aab2e2
4 changed files with 235 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace DiscImageChef.Server.Models
{
public class CompareModel
{
public int LeftId { get; set; }
public int RightId { get; set; }
public List<string> ValueNames { get; set; }
public List<string> LeftValues { get; set; }
public List<string> RightValues { get; set; }
public bool HasError { get; set; }
public string ErrorMessage { get; set; }
public bool AreEqual { get; set; }
}
}