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

8 lines
183 B
C#

namespace ASC.Notify.Patterns;
public interface IPatternFormatter
{
string[] GetTags(IPattern pattern);
void FormatMessage(INoticeMessage message, ITagValue[] tagsValues);
}