namespace OrpaonVision.Core.Configuration.Contracts;
///
/// 规则版本对比结果。
///
public sealed class RuleVersionCompareDto
{
///
/// 机种编码。
///
public string ProductTypeCode { get; init; } = string.Empty;
///
/// 对比源版本号。
///
public string SourceVersionNo { get; init; } = string.Empty;
///
/// 对比目标版本号。
///
public string TargetVersionNo { get; init; } = string.Empty;
///
/// 源版本快照 JSON。
///
public string SourceSnapshotJson { get; init; } = string.Empty;
///
/// 目标版本快照 JSON。
///
public string TargetSnapshotJson { get; init; } = string.Empty;
///
/// 版本是否一致。
///
public bool IsSame { get; init; }
///
/// 对比摘要。
///
public string Summary { get; init; } = string.Empty;
}