using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oReportNote { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _reportId = 0; public int reportId { get {return this._reportId;} set {this._reportId = value;} } private string _itemId = String.Empty; public string itemId { get {return this._itemId;} set {this._itemId = value;} } private string _note = String.Empty; public string note { get {return this._note;} set {this._note = value;} } }