11 lines
312 B
C#
11 lines
312 B
C#
namespace StellaOps.Evidence.Bundle;
|
|
|
|
public sealed class DiffEntry
|
|
{
|
|
public required DiffOperation Operation { get; init; }
|
|
public required string Path { get; init; }
|
|
public string? OldValue { get; init; }
|
|
public string? NewValue { get; init; }
|
|
public string? ComponentPurl { get; init; }
|
|
}
|