using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oPageTemplateControl { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _pageTemplateId = 0; public int pageTemplateId { get {return this._pageTemplateId;} set {this._pageTemplateId = value;} } private int _controlAttachmentId = 0; public int controlAttachmentId { get {return this._controlAttachmentId;} set {this._controlAttachmentId = value;} } private int _controlSurfaceId = 0; public int controlSurfaceId { get {return this._controlSurfaceId;} set {this._controlSurfaceId = value;} } private string _controlText = String.Empty; public string controlText { get {return this._controlText;} set {this._controlText = value;} } private string _controlTag = String.Empty; public string controlTag { get {return this._controlTag;} set {this._controlTag = value;} } private string _controlUrl = String.Empty; public string controlUrl { get {return this._controlUrl;} set {this._controlUrl = value;} } }