16 lines
410 B
C#
16 lines
410 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WorkFlowCheck.BL.Services.Interfaces
|
|
{
|
|
public interface IMessageService
|
|
{
|
|
Task<bool> SendMailAsync(List<string> recipients, string subject, string htmlBody);
|
|
Task<bool> SendFCMTokenAsync(string token);
|
|
Task<string> GetLastFCMTokensAsync();
|
|
}
|
|
}
|