41 lines
902 B
C#
41 lines
902 B
C#
///////////////////////////////////////////////////////////
|
|
// NotifyDeliveryMethods.cs
|
|
// Implementation of Class NotifyDeliveryMethods
|
|
// CSLA type: enumeration
|
|
// Created on: 06-Oct-2005
|
|
// Object design: John
|
|
// Coded: John 06-Oct-2005
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
/// <summary>
|
|
/// Methods of delivering an AyaNova event notification to
|
|
/// the user.
|
|
///
|
|
/// </summary>
|
|
public enum NotifyDeliveryMethods : int {
|
|
|
|
/// <summary>
|
|
/// Popup message box within AyaNova user interface
|
|
/// </summary>
|
|
PopUp = 1,
|
|
/// <summary>
|
|
/// SMTP - Internet email
|
|
/// </summary>
|
|
SMTP = 2,
|
|
/// <summary>
|
|
/// SMS device
|
|
/// </summary>
|
|
SMS = 3,
|
|
/// <summary>
|
|
/// AyaNova memo
|
|
/// </summary>
|
|
Memo = 4
|
|
|
|
}//end NotifyDeliveryMethods
|
|
|
|
}//end namespace GZTW.AyaNova.BLL |