DocSpace-buildtools/common/ASC.Core.Common/Notify/Patterns/IPatternFormatter.cs

8 lines
183 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Notify.Patterns;
public interface IPatternFormatter
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
string[] GetTags(IPattern pattern);
void FormatMessage(INoticeMessage message, ITagValue[] tagsValues);
}