aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities
diff options
context:
space:
mode:
authorEric Reed <ebr@mediabrowser3.com>2013-04-15 08:09:49 -0400
committerEric Reed <ebr@mediabrowser3.com>2013-04-15 08:09:49 -0400
commitae307f1c7d6e31d9813db3858dc912aff5b201d0 (patch)
treefb70aaa859fb965fd8d03beb80aa6a6b6e256693 /MediaBrowser.Controller/Entities
parent8e0722085d55b96ffc9aad330f63d1869835478c (diff)
parenta4cac9c95df1f169fd3457d25466f6896e12cd3f (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Conflicts: MediaBrowser.Installer/MainWindow.xaml.cs
Diffstat (limited to 'MediaBrowser.Controller/Entities')
-rw-r--r--MediaBrowser.Controller/Entities/BaseGame.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseGame.cs b/MediaBrowser.Controller/Entities/BaseGame.cs
new file mode 100644
index 0000000000..5df1bfaf4a
--- /dev/null
+++ b/MediaBrowser.Controller/Entities/BaseGame.cs
@@ -0,0 +1,30 @@
+
+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; }
+ }
+}