using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Newtonsoft.Json.Converters { /// /// Specifies whether a DateTime object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC. /// public enum JsonDateTimeSerializationMode { /// /// The time represented is local time. /// Local, /// /// The time represented is UTC. /// Utc, /// /// The time represented is not specified as either local time or Coordinated Universal Time (UTC). /// Unspecified, /// /// Preserves the DateTimeKind field of a date when a DateTime object is converted to a string and the string is then converted back to a DateTime object. /// RoundtripKind } }