using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPageTemplate { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _pageTemplateContentId = 0; public int pageTemplateContentId { get {return this._pageTemplateContentId;} set {this._pageTemplateContentId = value;} } private int _userCreated = 0; public int userCreated { get {return this._userCreated;} set {this._userCreated = value;} } private DateTime _dateCreated = DateTime.MinValue; public DateTime dateCreated { get {return this._dateCreated;} set {this._dateCreated = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } }