using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oReportField { 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 int _reportFieldTypeId = 0; public int reportFieldTypeId { get {return this._reportFieldTypeId;} set {this._reportFieldTypeId = value;} } private int _surfaceId = 0; public int surfaceId { get {return this._surfaceId;} set {this._surfaceId = value;} } private int _surfaceFieldId = 0; public int surfaceFieldId { get {return this._surfaceFieldId;} set {this._surfaceFieldId = value;} } private int _sequence = 0; public int sequence { get {return this._sequence;} set {this._sequence = value;} } private int _aggregationType = 0; public int aggregationType { get {return this._aggregationType;} set {this._aggregationType = value;} } private int _parentSurfaceId = 0; public int parentSurfaceId { get {return this._parentSurfaceId;} set {this._parentSurfaceId = value;} } private bool _isFilter = false; public bool isFilter { get {return this._isFilter;} set {this._isFilter = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private bool _isGrouped = false; public bool isGrouped { get {return this._isGrouped;} set {this._isGrouped = value;} } private string _reportFieldName = String.Empty; public string reportFieldName { get {return this._reportFieldName;} set {this._reportFieldName = value;} } private string _reportFieldDisplay = String.Empty; public string reportFieldDisplay { get {return this._reportFieldDisplay;} set {this._reportFieldDisplay = value;} } }