diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-22 14:15:31 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-22 14:15:31 -0400 |
| commit | 0acc25735419b051c6f57a2c08b2ad6f3a969b83 (patch) | |
| tree | 111ca9aa8f39a5ee5674f3a22c28337aba68ceaf /MediaBrowser.Controller/Entities/Game.cs | |
| parent | 8380a92806f0554f9b844f382b7edc70a538fe79 (diff) | |
updated nuget
Diffstat (limited to 'MediaBrowser.Controller/Entities/Game.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Game.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Game.cs b/MediaBrowser.Controller/Entities/Game.cs new file mode 100644 index 000000000..b62a71bd6 --- /dev/null +++ b/MediaBrowser.Controller/Entities/Game.cs @@ -0,0 +1,27 @@ + +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; } + } +} |
