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