jellyfin/MediaBrowser.Server.Startup.Common/NativeEnvironment.cs

20 lines
438 B
C#
Raw Normal View History

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