9 lines
203 B
C#
9 lines
203 B
C#
namespace StellaOps.AuditPack.Services;
|
|
|
|
public interface IAuditPackReplayer
|
|
{
|
|
Task<ReplayComparisonResult> ReplayAsync(
|
|
ImportResult importResult,
|
|
CancellationToken ct = default);
|
|
}
|