2016-06-23 17:04:18 +00:00
|
|
|
|
using MediaBrowser.Model.System;
|
|
|
|
|
|
2014-11-09 18:24:57 +00:00
|
|
|
|
namespace MediaBrowser.Server.Startup.Common
|
|
|
|
|
{
|
|
|
|
|
public class NativeEnvironment
|
|
|
|
|
{
|
|
|
|
|
public OperatingSystem OperatingSystem { get; set; }
|
|
|
|
|
public Architecture SystemArchitecture { get; set; }
|
2014-11-23 23:10:41 +00:00
|
|
|
|
public string OperatingSystemVersionString { get; set; }
|
2014-11-09 18:24:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum OperatingSystem
|
|
|
|
|
{
|
|
|
|
|
Windows = 0,
|
|
|
|
|
Osx = 1,
|
|
|
|
|
Bsd = 2,
|
|
|
|
|
Linux = 3
|
|
|
|
|
}
|
|
|
|
|
}
|