Files
ayanova7/source/bizobjects/AyaLib/GZTW.AyaNova.BLL/NotifyDeliveryMethods.cs
2018-06-29 19:47:36 +00:00

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