using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oTemplate { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _templateTypeId = 0; public int templateTypeId { get {return this._templateTypeId;} set {this._templateTypeId = value;} } private string _templateContent = String.Empty; public string templateContent { get { return this._templateContent; } set { this._templateContent = value; } } private string _templateName = String.Empty; public string templateName { get {return this._templateName;} set {this._templateName = value;} } }