14 lines
339 B
C#
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; }
|
|
}
|