9 lines
285 B
C#
9 lines
285 B
C#
using PARR.Domain.Entities.Base.History;
|
|
|
|
namespace PARR.TemplateMatcher.Services.Interfaces
|
|
{
|
|
internal interface IUnusedTemplatesSyncService
|
|
{
|
|
Task SyncAsync(Guid unusedJobId, HistoryInitiator initiator, bool dryRun = false, CancellationToken ct = default);
|
|
}
|
|
} |