using System;
namespace Neo.Afx.Mvc
{
///
/// 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
}
}