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

8 lines
170 B
C#

namespace ASC.Core.Notify.Senders;
public interface INotifySender
{
void Init(IDictionary<string, string> properties);
NoticeSendResult Send(NotifyMessage m);
}