diff options
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 + } +} |
