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