namespace StellaOps.AuditPack.Services; /// /// A detected drift item. /// 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; } }