DocSpace-client/common/ASC.Core.Common/Notify/Patterns/IPattern.cs

11 lines
197 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Notify.Patterns;
public interface IPattern
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
string ID { get; }
string Subject { get; }
string Body { get; }
string ContentType { get; }
string Styler { get; }
}