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

11 lines
197 B
C#

namespace ASC.Notify.Patterns;
public interface IPattern
{
string ID { get; }
string Subject { get; }
string Body { get; }
string ContentType { get; }
string Styler { get; }
}