SPMS_API/SPMS.Application/Interfaces/IDuplicateChecker.cs

7 lines
177 B
C#

namespace SPMS.Application.Interfaces;
public interface IDuplicateChecker
{
Task<bool> IsDuplicateAsync(string requestId, CancellationToken cancellationToken = default);
}