DocSpace-buildtools/common/ASC.Core.Common/Notify/Channels/ISenderChannel.cs

9 lines
196 B
C#

namespace ASC.Notify.Channels;
public interface ISenderChannel
{
string SenderName { get; }
SendResponse DirectSend(INoticeMessage message);
void SendAsync(INoticeMessage message);
}