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

13 lines
477 B
C#
Raw Permalink Normal View History

namespace Aaru.Server.Database.Models;
2021-12-08 17:57:50 +00:00
public class CompareModel
2019-11-09 23:49:48 +00:00
{
2021-12-08 17:57:50 +00:00
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; }
2019-11-09 23:49:48 +00:00
}