jellyfin/MediaBrowser.Controller/Entities/Game.cs
Luke Pulverenti 0acc257354 updated nuget
2013-06-22 14:15:31 -04:00

28 lines
724 B
C#

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