This commit is contained in:
27
source/bizobjects/AyaLib/GZTW.AyaNova.BLL/NotifyMessage.cs
Normal file
27
source/bizobjects/AyaLib/GZTW.AyaNova.BLL/NotifyMessage.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
|
||||
namespace GZTW.AyaNova.BLL
|
||||
{
|
||||
#pragma warning disable 1591
|
||||
|
||||
/// <summary>
|
||||
/// Notify message object used
|
||||
/// for transporting notification messages
|
||||
/// from a specific object that formatted it
|
||||
/// to a delivery provider
|
||||
/// </summary>
|
||||
public class NotifyMessage
|
||||
{
|
||||
private string _subject;
|
||||
private string _message;
|
||||
public NotifyMessage(string Subject, string Message)
|
||||
{
|
||||
_subject=Subject;
|
||||
_message=Message;
|
||||
}
|
||||
public string Subject {get{return _subject;}}
|
||||
public string Message {get{return _message;}}
|
||||
}
|
||||
#pragma warning restore 1591
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user