This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
///////////////////////////////////////////////////////////
|
||||
// NotifyDeliveryMessageFormats.cs
|
||||
// Implementation of Class NotifyDeliveryMessageFormats
|
||||
// CSLA type: enumeration
|
||||
// Created on: 06-Oct-2005
|
||||
// Object design: John
|
||||
// Coded: John 06-Oct-2005
|
||||
///////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
|
||||
|
||||
namespace GZTW.AyaNova.BLL
|
||||
{
|
||||
/// <summary>
|
||||
/// Methods of formatting the notification message
|
||||
/// Used by the delivery procesor for the specific method chosen
|
||||
/// Basically used to determine how much to condense the message.
|
||||
///
|
||||
/// </summary>
|
||||
public enum NotifyDeliveryMessageFormats : int
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Most compact format
|
||||
/// Messages are formatted as compactly as possible using abbreviations
|
||||
/// and as little text as possible.
|
||||
///
|
||||
/// Most critical information first followed by increasingly
|
||||
/// less critical information.
|
||||
/// </summary>
|
||||
Brief = 1,
|
||||
/// <summary>
|
||||
/// Most verbose format
|
||||
/// As much information as possible that is relevant is included
|
||||
/// in a full text format (no abbreviations, message formatted
|
||||
/// for viewing not compactness)
|
||||
/// </summary>
|
||||
Full = 2
|
||||
|
||||
|
||||
}//end NotifyDeliveryMessageFormats
|
||||
|
||||
}//end namespace GZTW.AyaNova.BLL
|
||||
Reference in New Issue
Block a user