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

9 lines
203 B
C#

namespace StellaOps.AuditPack.Services;
public interface IAuditPackReplayer
{
Task<ReplayComparisonResult> ReplayAsync(
ImportResult importResult,
CancellationToken ct = default);
}