DocSpace-buildtools/common/ASC.Core.Common/Notify/Messages/SendResult.cs

12 lines
166 B
C#
Raw Normal View History

2022-02-15 11:52:43 +00:00
namespace ASC.Notify.Messages;
[Flags]
public enum SendResult
2019-05-15 14:56:09 +00:00
{
2022-02-15 11:52:43 +00:00
OK = 1,
IncorrectRecipient = 2,
Impossible = 4,
Inprogress = 8,
Prevented = 16
}