You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
501 B
26 lines
501 B
|
|
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
|
|
}
|
|
}
|