using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oContent { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _sequence = 0; public int sequence { get { return this._sequence; } set { this._sequence = 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 bool _isFeatured = false; public bool isFeatured { get { return this._isFeatured; } set { this._isFeatured = value; } } private string _title = String.Empty; public string title { get { return this._title; } set { this._title = value; } } }