using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMailBodyContent { private int _mailID = 0; public int mailID { get {return this._mailID;} set {this._mailID = value;} } private int _mailType = 0; public int mailType { get {return this._mailType;} set {this._mailType = value;} } private int _mailPriority = 0; public int mailPriority { get {return this._mailPriority;} set {this._mailPriority = value;} } private int _createUser = 0; public int createUser { get {return this._createUser;} set {this._createUser = value;} } private int _modifyUser = 0; public int modifyUser { get {return this._modifyUser;} set {this._modifyUser = value;} } private int _purgeUser = 0; public int purgeUser { get {return this._purgeUser;} set {this._purgeUser = value;} } private DateTime _createDate = DateTime.MinValue; public DateTime createDate { get {return this._createDate;} set {this._createDate = value;} } private DateTime _modifyDate = DateTime.MinValue; public DateTime modifyDate { get {return this._modifyDate;} set {this._modifyDate = value;} } private DateTime _purgeDate = DateTime.MinValue; public DateTime purgeDate { get {return this._purgeDate;} set {this._purgeDate = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private bool _isPurged = false; public bool isPurged { get {return this._isPurged;} set {this._isPurged = value;} } private string _mailSubject = String.Empty; public string mailSubject { get {return this._mailSubject;} set {this._mailSubject = value;} } private string _mailBody = String.Empty; public string mailBody { get {return this._mailBody;} set {this._mailBody = value;} } }