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