This commit is contained in:
2018-06-29 19:47:36 +00:00
commit be7f501333
3769 changed files with 1425961 additions and 0 deletions

View 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
}