11 lines
No EOL
289 B
C#
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();
|
|
}
|
|
} |