DocSpace-buildtools/common/ASC.Core.Common/Notify/Messages/INoticeMessage.cs

14 lines
353 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Notify.Messages;
public interface INoticeMessage
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
IDirectRecipient Recipient { get; }
IPattern Pattern { get; }
INotifyAction Action { get; }
ITagValue[] Arguments { get; }
string Subject { get; set; }
string Body { get; set; }
string ContentType { get; }
void AddArgument(params ITagValue[] tagValue);
}