websitepanel/WebsitePanel/Sources/WebsitePanel.WebDav.Core/Interfaces/Services/ISmsDistributionService.cs
2015-04-15 05:23:08 -07:00

9 lines
No EOL
258 B
C#

namespace WebsitePanel.WebDav.Core.Interfaces.Services
{
public interface ISmsDistributionService
{
bool SendMessage(string phoneFrom, string phone, string message);
bool SendMessage(string phone, string message);
}
}