zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Infrastructure/Idempotency/IRequestManager.cs

9 lines
233 B
C#
Raw Permalink Normal View History

2023-12-05 09:22:48 +00:00
namespace ZeroFramework.DeviceCenter.Infrastructure.Idempotency
{
public interface IRequestManager
{
Task<bool> ExistAsync(string commandId);
Task CreateRequestForCommandAsync<T>(string commandId);
}
}