mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 11:14:27 +00:00
13 lines
477 B
C#
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; }
|
|
} |