aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/NativeEnvironment.cs
blob: 5b45afe73163ba0943245479c136f693fcf1ea0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
    }

    public enum Architecture
    {
        X86 = 0,
        X86_X64 = 1,
        Arm = 2
    }
}