using AyCode.Interfaces.Messages; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static AyCode.Interfaces.Enums.IMessageTypes; namespace TIAMWebApp.Shared.Application.Interfaces { public interface IClientNoticeSenderService { public Task SendNoticeAsync(TNotice message, int messageType) where TNotice : class, INoticeBase; } }