DocSpace-buildtools/common/ASC.Core.Common/Notify/Senders/INotifySender.cs

8 lines
170 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Core.Notify.Senders;
public interface INotifySender
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
void Init(IDictionary<string, string> properties);
NoticeSendResult Send(NotifyMessage m);
2019-05-15 14:56:09 +00:00
}