namespace MediaBrowser.Controller.Entities
{
    /// 
    /// Class BaseGame
    /// 
    public class BaseGame : BaseItem
    {
        /// 
        /// Gets the type of the media.
        /// 
        /// The type of the media.
        public override string MediaType
        {
            get { return Model.Entities.MediaType.Game; }
        }
        /// 
        /// Gets or sets the players supported.
        /// 
        /// The players supported.
        public int? PlayersSupported { get; set; }
        /// 
        /// Gets or sets the game system.
        /// 
        /// The game system.
        public string GameSystem { get; set; }
    }
}