using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oBannerType { private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _width = 0; public int width { get {return this._width;} set {this._width = value;} } private int _height = 0; public int height { get {return this._height;} set {this._height = value;} } private string _bannerType = String.Empty; public string bannerType { get {return this._bannerType;} set {this._bannerType = value;} } }