AyCode.Core/AyCode.Interfaces/Messages/IMessageSenderService.cs

10 lines
255 B
C#

using AyCode.Interfaces.Enums;
namespace AyCode.Interfaces.Messages
{
public interface IMessageSenderService
{
public Task<string> SendMessageAsync<TNotice>(TNotice message, int messageType) where TNotice : class, INoticeBase;
}
}