aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Configuration/Configuration.cs19
-rw-r--r--MediaBrowser.Model/Logging/LogSeverity.cs14
-rw-r--r--MediaBrowser.Model/MediaBrowser.Model.csproj2
3 files changed, 0 insertions, 35 deletions
diff --git a/MediaBrowser.Model/Configuration/Configuration.cs b/MediaBrowser.Model/Configuration/Configuration.cs
deleted file mode 100644
index e7dc4b8438..0000000000
--- a/MediaBrowser.Model/Configuration/Configuration.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using MediaBrowser.Model.Logging;
-
-namespace MediaBrowser.Model.Configuration
-{
- public class Configuration
- {
- public string ImagesByNamePath { get; set; }
- public int HttpServerPortNumber { get; set; }
- public int RecentItemDays { get; set; }
- public LogSeverity LogSeverity { get; set; }
-
- public Configuration()
- {
- HttpServerPortNumber = 8096;
- RecentItemDays = 14;
- LogSeverity = LogSeverity.Info;
- }
- }
-}
diff --git a/MediaBrowser.Model/Logging/LogSeverity.cs b/MediaBrowser.Model/Logging/LogSeverity.cs
deleted file mode 100644
index bac03acdd1..0000000000
--- a/MediaBrowser.Model/Logging/LogSeverity.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-
-namespace MediaBrowser.Model.Logging
-{
- [Flags]
- public enum LogSeverity
- {
- None = 0,
- Debug = 1,
- Info = 2,
- Warning = 4,
- Error = 8
- }
-}
diff --git a/MediaBrowser.Model/MediaBrowser.Model.csproj b/MediaBrowser.Model/MediaBrowser.Model.csproj
index bcf8a86514..b41b54c0bf 100644
--- a/MediaBrowser.Model/MediaBrowser.Model.csproj
+++ b/MediaBrowser.Model/MediaBrowser.Model.csproj
@@ -35,7 +35,6 @@
<!-- A reference to the entire .NET Framework is automatically included -->
</ItemGroup>
<ItemGroup>
- <Compile Include="Configuration\Configuration.cs" />
<Compile Include="Entities\ApiBaseItem.cs" />
<Compile Include="Entities\Audio.cs" />
<Compile Include="Entities\BaseItem.cs" />
@@ -46,7 +45,6 @@
<Compile Include="Entities\Studio.cs" />
<Compile Include="Entities\Video.cs" />
<Compile Include="Entities\Year.cs" />
- <Compile Include="Logging\LogSeverity.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Users\User.cs" />
<Compile Include="Users\UserItemData.cs" />