using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMailNotifications { private int _recipientID = 0; public int recipientID { get {return this._recipientID;} set {this._recipientID = value;} } private int _notifyMailTypes = 0; public int notifyMailTypes { get {return this._notifyMailTypes;} set {this._notifyMailTypes = value;} } private int _recipientUserID = 0; public int recipientUserID { get {return this._recipientUserID;} set {this._recipientUserID = value;} } private bool _useUserAccount = false; public bool useUserAccount { get {return this._useUserAccount;} set {this._useUserAccount = 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 _fullNames = String.Empty; public string fullNames { get {return this._fullNames;} set {this._fullNames = value;} } private string _emailAddress = String.Empty; public string emailAddress { get {return this._emailAddress;} set {this._emailAddress = value;} } }