summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Globalization/TimeSpanStyles.cs
blob: df2ea134273d55b60f10040767f323065b052413 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace System.Globalization {

    [Flags]
    public enum TimeSpanStyles {
          None                  = 0x00000000,
          AssumeNegative        = 0x00000001,
    }
}