websitepanel/WebsitePanel/Sources/WebsitePanel.WebDav.Core/Interfaces/Security/ISmsAuthenticationService.cs
2015-04-14 00:40:11 -07:00

11 lines
No EOL
289 B
C#

using System;
namespace WebsitePanel.WebDav.Core.Interfaces.Security
{
public interface ISmsAuthenticationService
{
bool VerifyResponse(Guid token, string response);
string SendRequestMessage(string phoneTo);
string GenerateResponse();
}
}