From e029b47ca3452615d2b9ead21e47363fd5e9b064 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 1 Jul 2013 10:01:16 -0400 Subject: [PATCH] removed BaseGame --- MediaBrowser.Controller/Entities/BaseGame.cs | 30 ------------------- .../MediaBrowser.Controller.csproj | 1 - 2 files changed, 31 deletions(-) delete mode 100644 MediaBrowser.Controller/Entities/BaseGame.cs diff --git a/MediaBrowser.Controller/Entities/BaseGame.cs b/MediaBrowser.Controller/Entities/BaseGame.cs deleted file mode 100644 index 5df1bfaf4a..0000000000 --- a/MediaBrowser.Controller/Entities/BaseGame.cs +++ /dev/null @@ -1,30 +0,0 @@ - -namespace MediaBrowser.Controller.Entities -{ - /// - /// Class BaseGame - /// - public class BaseGame : BaseItem - { - /// - /// Gets the type of the media. - /// - /// The type of the media. - public override string MediaType - { - get { return Model.Entities.MediaType.Game; } - } - - /// - /// Gets or sets the players supported. - /// - /// The players supported. - public int? PlayersSupported { get; set; } - - /// - /// Gets or sets the game system. - /// - /// The game system. - public string GameSystem { get; set; } - } -} diff --git a/MediaBrowser.Controller/MediaBrowser.Controller.csproj b/MediaBrowser.Controller/MediaBrowser.Controller.csproj index eea344a632..228c6380fa 100644 --- a/MediaBrowser.Controller/MediaBrowser.Controller.csproj +++ b/MediaBrowser.Controller/MediaBrowser.Controller.csproj @@ -93,7 +93,6 @@ -