using System;
namespace Neo.Legitimate.WinService.SystemTriggers
{
public enum SystemTriggerStatusEnum : short
{
Pending = 1,
InProgress = 2,
Completed = 3,
Failed = 4,
Cancelled = 5
}
public enum SystemTriggerTypeEnum : short
{
SendNewVerificationTaskInQueue = 1
}
///
/// The Json serialization options
///
[Flags]
public enum JsonSerializerOptions
{
///
/// Don't apply any serializer options
///
None = 0,
///
/// Replace single \ with double \
///
EscapeBackSlash = 1,
///
/// Converts date format to JSON format
///
FormatDateTime = 2,
///
/// Converts double quotes that have been escaped and contain two \ to have only one
///
EscapeDoubleSlashQuotes = 4,
///
/// Applies all the serializer options
///
All = 8
}
}