using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oMedia { private string _introduction = String.Empty; public string introduction { get { return this._introduction; } set { this._introduction = value; } } private string _detail = String.Empty; public string detail { get { return this._detail; } set { this._detail = value; } } private int _recId = 0; public int recId { get { return this._recId; } set { this._recId = value; } } private int _mediaType = 0; public int mediaType { get { return this._mediaType; } set { this._mediaType = value; } } private int _sequence = 0; public int sequence { get { return this._sequence; } set { this._sequence = value; } } private int _userId = 0; public int userId { get { return this._userId; } set { this._userId = value; } } private DateTime _mediaDate = DateTime.MinValue; public DateTime mediaDate { get { return this._mediaDate; } set { this._mediaDate = value; } } private DateTime _dateAdded = DateTime.MinValue; public DateTime dateAdded { get { return this._dateAdded; } set { this._dateAdded = value; } } private DateTime _dateEdited = DateTime.MinValue; public DateTime dateEdited { get { return this._dateEdited; } set { this._dateEdited = value; } } private bool _isActive = false; public bool isActive { get { return this._isActive; } set { this._isActive = value; } } private bool _isFeatured = false; public bool isFeatured { get { return this._isFeatured; } set { this._isFeatured = value; } } private string _mediaTypeName = String.Empty; public string mediaTypeName { get { return this._mediaTypeName; } set { this._mediaTypeName = value; } } private string _mediaBanner = String.Empty; public string mediaBanner { get { return this._mediaBanner; } set { this._mediaBanner = value; } } private string _name = String.Empty; public string name { get { return this._name; } set { this._name = value; } } private string _mediaAuthor = String.Empty; public string mediaAuthor { get { return this._mediaAuthor; } set { this._mediaAuthor = value; } } private string _title = String.Empty; public string title { get { return this._title; } set { this._title = value; } } private string _mediathumb = String.Empty; public string mediathumb { get { return this._mediathumb; } set { this._mediathumb = value; } } }