Game.cs 724 B

123456789101112131415161718192021222324252627
  1. 
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. public class Game : BaseItem
  5. {
  6. /// <summary>
  7. /// Gets the type of the media.
  8. /// </summary>
  9. /// <value>The type of the media.</value>
  10. public override string MediaType
  11. {
  12. get { return Model.Entities.MediaType.Game; }
  13. }
  14. /// <summary>
  15. /// Gets or sets the players supported.
  16. /// </summary>
  17. /// <value>The players supported.</value>
  18. public int? PlayersSupported { get; set; }
  19. /// <summary>
  20. /// Gets or sets the game system.
  21. /// </summary>
  22. /// <value>The game system.</value>
  23. public string GameSystem { get; set; }
  24. }
  25. }