/////////////////////////////////////////////////////////// // 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 { /// /// Methods of delivering an AyaNova event notification to /// the user. /// /// public enum NotifyDeliveryMethods : int { /// /// Popup message box within AyaNova user interface /// PopUp = 1, /// /// SMTP - Internet email /// SMTP = 2, /// /// SMS device /// SMS = 3, /// /// AyaNova memo /// Memo = 4 }//end NotifyDeliveryMethods }//end namespace GZTW.AyaNova.BLL