Files
Aaru.Server/Aaru.Server.Database/Models/CompareModel.cs

13 lines
477 B
C#

namespace Aaru.Server.Database.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; }
}