6 lines
132 B
C#

namespace DigitalData.Auth.Abstractions;
public interface IAuthSenderHandler
{
Task SendKeyAsync(string name, string key);
}