stabilizaiton work - projects rework for maintenanceability and ui livening
This commit is contained in:
13
src/__Libraries/StellaOps.AuditPack/Services/DriftItem.cs
Normal file
13
src/__Libraries/StellaOps.AuditPack/Services/DriftItem.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user