zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Infrastructure/Idempotency/IRequestManager.cs
2023-12-05 17:22:48 +08:00

9 lines
233 B
C#

namespace ZeroFramework.DeviceCenter.Infrastructure.Idempotency
{
public interface IRequestManager
{
Task<bool> ExistAsync(string commandId);
Task CreateRequestForCommandAsync<T>(string commandId);
}
}