using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oNote { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _moduleId = 0; public int moduleId { get { return this._moduleId; } set { this._moduleId = value; } } private int _typeId = 0; public int typeId { get { return this._typeId; } set { this._typeId = value; } } private int _entityId = 0; public int entityId { get { return this._entityId; } set { this._entityId = value; } } private int _userIdSaved = 0; public int userIdSaved { get { return this._userIdSaved; } set { this._userIdSaved = value; } } private int _userIdUpdated = 0; public int userIdUpdated { get { return this._userIdUpdated; } set { this._userIdUpdated = value; } } private DateTime _dateSaved = DateTime.MinValue; public DateTime dateSaved { get { return this._dateSaved; } set { this._dateSaved = value; } } private DateTime _dateUpdated = DateTime.MinValue; public DateTime dateUpdated { get { return this._dateUpdated; } set { this._dateUpdated = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private string _title = String.Empty; public string title { get { return this._title; } set { this._title = value; } } private string _caption = String.Empty; public string caption { get { return this._caption; } set { this._caption = value; } } private string _customValue = String.Empty; public string customValue { get { return this._customValue; } set { this._customValue = value; } } private string _fieldName = String.Empty; public string fieldName { get { return this._fieldName; } set { this._fieldName = value; } } }