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 SendMailAsync(List recipients, string subject, string htmlBody); Task SendFCMTokenAsync(string token); Task GetLastFCMTokensAsync(); } }