using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oNewsletter { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get {return this._dateCreated;} set {this._dateCreated = value;} } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get {return this._dateUpdated;} set {this._dateUpdated = value;} } private string _contentHTML = String.Empty; public string contentHTML { get {return this._contentHTML;} set {this._contentHTML = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _title = String.Empty; public string title { get {return this._title;} set {this._title = value;} } }