using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oBanner { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _bannerTypeId = 0; public int bannerTypeId { get {return this._bannerTypeId;} set {this._bannerTypeId = value;} } private int _sequence = 0; public int sequence { get {return this._sequence;} set {this._sequence = value;} } private int _cId = 0; public int cId { get {return this._cId;} set {this._cId = value;} } private DateTime _dateSaved = DateTime.MinValue; public DateTime dateSaved { get {return this._dateSaved;} set {this._dateSaved = value;} } private DateTime _startDate = DateTime.MinValue; public DateTime startDate { get {return this._startDate;} set {this._startDate = value;} } private DateTime _endDate = DateTime.MinValue; public DateTime endDate { get {return this._endDate;} set {this._endDate = value;} } private bool _isActive = false; public bool isActive { get {return this._isActive;} set {this._isActive = value;} } private bool _hideTitle = false; public bool hideTitle { get {return this._hideTitle;} set {this._hideTitle = value;} } private bool _hideCaption = false; public bool hideCaption { get {return this._hideCaption;} set {this._hideCaption = 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 _fileName = String.Empty; public string fileName { get {return this._fileName;} set {this._fileName = value;} } private string _path = String.Empty; public string path { get {return this._path;} set {this._path = value;} } }