1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 /*============================================================
6 **
7 **
8 **
9 ** Purpose: Enum for the day of the week.
10 **
11 **
12 ============================================================*/
13 
14 namespace System
15 {
16     public enum DayOfWeek
17     {
18         Sunday = 0,
19         Monday = 1,
20         Tuesday = 2,
21         Wednesday = 3,
22         Thursday = 4,
23         Friday = 5,
24         Saturday = 6,
25     }
26 }
27