namespace CPF.Windows.Json
{
///
/// Timespan格式化枚举
/// Timespan Format Enumeration
///
public enum TimespanFormatEnum
{
///
/// TimeSpans will be formatted as ISO8601 durations.
/// Examples: P123DT11H30M2.3S
///
ISO8601,
///
/// TimeSpans will be formatted as "days.hours:minutes:seconds.fractionalSeconds"
///
Microsoft
}
}