using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMediaType { private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _thumbWidth = 0; public int thumbWidth { get { return this._thumbWidth; } set { this._thumbWidth = value; } } private int _thumbHeight = 0; public int thumbHeight { get { return this._thumbHeight; } set { this._thumbHeight = value; } } private int _bannerWidth = 0; public int bannerWidth { get { return this._bannerWidth; } set { this._bannerWidth = value; } } private int _bannerHeight = 0; public int bannerHeight { get { return this._bannerHeight; } set { this._bannerHeight = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private string _mediaType = String.Empty; public string mediaType { get { return this._mediaType; } set { this._mediaType = value; } } }