30 lines
580 B
C#
30 lines
580 B
C#
///////////////////////////////////////////////////////////
|
|
// ScheduleViews.cs
|
|
// Implementation of Class ScheduleViews
|
|
//
|
|
// Created on: 10-Jan-2005
|
|
// Object design: John
|
|
// Coded: John 10-Jan-2005
|
|
///////////////////////////////////////////////////////////
|
|
|
|
using System;
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
#pragma warning disable 1591
|
|
|
|
/// <summary>
|
|
/// Used by UI
|
|
/// </summary>
|
|
public enum ScheduleViews : int
|
|
{
|
|
None=0,
|
|
SingleDay=1,
|
|
WorkWeek=2,
|
|
Week=3,
|
|
Month=4
|
|
|
|
}//end ScheduleViews
|
|
#pragma warning restore 1591
|
|
}
|