This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
///////////////////////////////////////////////////////////
|
||||
// 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
|
||||
Reference in New Issue
Block a user