12 lines
231 B
C#
12 lines
231 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BackendWorkerService.Services.Interface
|
|
{
|
|
public interface ISendSMSService
|
|
{
|
|
bool Send(int id, string phone, string message);
|
|
}
|
|
}
|