diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-09 13:24:57 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-09 13:24:57 -0500 |
| commit | 1a80362a0f04c3cc571456af64f9de19c0c30d2a (patch) | |
| tree | 31916eea422d8ac861aa36a47cae832eee168ad8 /MediaBrowser.Server.Startup.Common/NativeEnvironment.cs | |
| parent | 40897bac1494791e1ec6abcfe85cda27d4664a32 (diff) | |
created common startup project for mono & windows
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/NativeEnvironment.cs')
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/NativeEnvironment.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Startup.Common/NativeEnvironment.cs b/MediaBrowser.Server.Startup.Common/NativeEnvironment.cs new file mode 100644 index 000000000..df9dacb4c --- /dev/null +++ b/MediaBrowser.Server.Startup.Common/NativeEnvironment.cs @@ -0,0 +1,24 @@ + +namespace MediaBrowser.Server.Startup.Common +{ + public class NativeEnvironment + { + public OperatingSystem OperatingSystem { get; set; } + public Architecture SystemArchitecture { get; set; } + } + + public enum OperatingSystem + { + Windows = 0, + Osx = 1, + Bsd = 2, + Linux = 3 + } + + public enum Architecture + { + X86 = 0, + X86_X64 = 1, + Arm = 2 + } +} |
