aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/BaseGame.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseGame.cs')
-rw-r--r--MediaBrowser.Controller/Entities/BaseGame.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseGame.cs b/MediaBrowser.Controller/Entities/BaseGame.cs
deleted file mode 100644
index 5df1bfaf4..000000000
--- a/MediaBrowser.Controller/Entities/BaseGame.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-
-namespace MediaBrowser.Controller.Entities
-{
- /// <summary>
- /// Class BaseGame
- /// </summary>
- public class BaseGame : 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; }
- }
-}