using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oReport { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _createdBy = 0; public int createdBy { get {return this._createdBy;} set {this._createdBy = value;} } private int _updatedBy = 0; public int updatedBy { get {return this._updatedBy;} set {this._updatedBy = 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 bool _enableAggregation = false; public bool enableAggregation { get {return this._enableAggregation;} set {this._enableAggregation = value;} } private bool _isPublic = false; public bool isPublic { get {return this._isPublic;} set {this._isPublic = value;} } private bool _isArchived = false; public bool isArchived { get {return this._isArchived;} set {this._isArchived = value;} } private bool _includeNotes = false; public bool includeNotes { get {return this._includeNotes;} set {this._includeNotes = value;} } private bool _filterOnSelect = false; public bool filterOnSelect { get {return this._filterOnSelect;} set {this._filterOnSelect = value;} } private bool _enableScroll = false; public bool enableScroll { get {return this._enableScroll;} set {this._enableScroll = value;} } private bool _fixedHeaders = false; public bool fixedHeaders { get {return this._fixedHeaders;} set {this._fixedHeaders = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } private string _display = String.Empty; public string display { get {return this._display;} set {this._display = value;} } private string _notesLinkField = String.Empty; public string notesLinkField { get {return this._notesLinkField;} set {this._notesLinkField = value;} } }