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