17 lines
445 B
C#
17 lines
445 B
C#
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<string> SendNoticeAsync<TNotice>(TNotice message, int messageType) where TNotice : class, INoticeBase;
|
|
|
|
}
|
|
}
|