///////////////////////////////////////////////////////////
// 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
{
///
/// 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.
///
///
public enum NotifyDeliveryMessageFormats : int
{
///
/// 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.
///
Brief = 1,
///
/// 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)
///
Full = 2
}//end NotifyDeliveryMessageFormats
}//end namespace GZTW.AyaNova.BLL