Add new files from Wictor Wilen
[mono.git] / mcs / class / corlib / System.Globalization / CalendarWeekRule.cs
1 // ::MONO
2 //
3 // System.Globalization.CalendarWeekRule.cs
4 //
5 // Copyright (C) Wictor Wilén 2001 (wictor@iBizkit.se)
6 //
7 // Contributors: Wictor Wilén
8 //
9 // Revisions
10 // 2001-09-14:  First draft
11 // 2001-09-15:  First release
12
13 using System;
14
15 namespace System.Globalization
16 {
17         /// <summary>
18         /// The System.Globalization.CalendarWeekRule enumeration
19         /// </summary>
20         public enum CalendarWeekRule
21         {
22                 FirstDay = 0,
23                 FirstFullWeek = 1,
24                 FirstFourDayWeek = 2
25
26         }
27
28 }