jellyfin/MediaBrowser.Model/System/IEnvironmentInfo.cs

22 lines
437 B
C#
Raw Normal View History

using System.Runtime.InteropServices;
2019-01-01 16:27:11 +01:00
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.System
{
public interface IEnvironmentInfo
{
2019-01-13 21:37:13 +01:00
OperatingSystem OperatingSystem { get; }
2018-12-28 00:27:57 +01:00
string OperatingSystemName { get; }
string OperatingSystemVersion { get; }
Architecture SystemArchitecture { get; }
}
public enum OperatingSystem
{
Windows,
Linux,
OSX,
BSD,
Android
}
}