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

9 lines
196 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Notify.Channels;
public interface ISenderChannel
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
string SenderName { get; }
SendResponse DirectSend(INoticeMessage message);
2022-02-21 09:17:17 +00:00
void SendAsync(INoticeMessage message);
2022-02-15 11:52:43 +00:00
}