aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/NativeEnvironment.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-11 03:13:11 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-11 03:13:11 -0500
commit918b9ca86d1bdb9758430e9164f5fba72de1d9a7 (patch)
tree1f9ec909d18593a8f69a6dbbf7af580ad25005a5 /MediaBrowser.Server.Startup.Common/NativeEnvironment.cs
parentf8dd02bb66d2f243515d295b4d256a4c74f433ca (diff)
update core projects
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/NativeEnvironment.cs')
-rw-r--r--MediaBrowser.Server.Startup.Common/NativeEnvironment.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/MediaBrowser.Server.Startup.Common/NativeEnvironment.cs b/MediaBrowser.Server.Startup.Common/NativeEnvironment.cs
deleted file mode 100644
index b30509982..000000000
--- a/MediaBrowser.Server.Startup.Common/NativeEnvironment.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using MediaBrowser.Model.System;
-
-namespace MediaBrowser.Server.Startup.Common
-{
- public class NativeEnvironment
- {
- public OperatingSystem OperatingSystem { get; set; }
- public Architecture SystemArchitecture { get; set; }
- public string OperatingSystemVersionString { get; set; }
- }
-
- public enum OperatingSystem
- {
- Windows = 0,
- Osx = 1,
- Bsd = 2,
- Linux = 3
- }
-}