44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
///////////////////////////////////////////////////////////
|
|
// 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 |