DocSpace-buildtools/common/ASC.Core.Common/Notify/InterceptorPlace.cs

11 lines
140 B
C#

namespace ASC.Notify;
[Flags]
public enum InterceptorPlace
{
Prepare = 1,
GroupSend = 2,
DirectSend = 4,
MessageSend = 8
}