This commit is contained in:
2018-06-29 19:47:36 +00:00
commit be7f501333
3769 changed files with 1425961 additions and 0 deletions

View File

@@ -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