using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oNoteType { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private string _noteType = String.Empty; public string noteType { get {return this._noteType;} set {this._noteType = value;} } private string _customItem = String.Empty; public string customItem { get {return this._customItem;} set {this._customItem = value;} } }