Files
git.stella-ops.org/src/__Libraries/StellaOps.AuditPack/Services/DriftItem.cs

14 lines
339 B
C#

namespace StellaOps.AuditPack.Services;
/// <summary>
/// A detected drift item.
/// </summary>
public sealed record DriftItem
{
public DriftType Type { get; init; }
public string? Field { get; init; }
public string? Expected { get; init; }
public string? Actual { get; init; }
public string? Message { get; init; }
}