using System.Collections.Generic; namespace DiscImageChef.Server.Models { public class CompareModel { public int LeftId { get; set; } public int RightId { get; set; } public List ValueNames { get; set; } public List LeftValues { get; set; } public List RightValues { get; set; } public bool HasError { get; set; } public string ErrorMessage { get; set; } public bool AreEqual { get; set; } } }