45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
///////////////////////////////////////////////////////////
|
|
// AyaDayOfWeek.cs
|
|
// Implementation of Class AyaDayOfWeek
|
|
// CSLA type: enumeration
|
|
// Created on: 07-Jun-2004 8:41:23 AM
|
|
// Object design: Joyce
|
|
// Coded: John July 19 2004
|
|
///////////////////////////////////////////////////////////
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
#pragma warning disable 1591
|
|
[TypeConverter(typeof(EnumDescConverter))]
|
|
public enum AyaDayOfWeek : int {
|
|
|
|
[Description("LT:UI.Label.Day.Saturday")]
|
|
Saturday = 1,
|
|
|
|
[Description("LT:UI.Label.Day.Sunday")]
|
|
Sunday = 2,
|
|
|
|
[Description("LT:UI.Label.Day.Monday")]
|
|
Monday = 3,
|
|
|
|
[Description("LT:UI.Label.Day.Tuesday")]
|
|
Tuesday = 4,
|
|
|
|
[Description("LT:UI.Label.Day.Wednesday")]
|
|
Wednesday = 5,
|
|
|
|
[Description("LT:UI.Label.Day.Thursday")]
|
|
Thursday = 6,
|
|
|
|
[Description("LT:UI.Label.Day.Friday")]
|
|
Friday = 7,
|
|
|
|
[Description("LT:UI.Label.Day.Any")]
|
|
AnyDayOfWeek = 8
|
|
|
|
}//end AyaDayOfWeek
|
|
#pragma warning restore 1591
|
|
}//end namespace GZTW.AyaNova.BLL |