2
0

NativeEnvironment.cs 501 B

12345678910111213141516171819202122232425
  1. 
  2. namespace MediaBrowser.Server.Startup.Common
  3. {
  4. public class NativeEnvironment
  5. {
  6. public OperatingSystem OperatingSystem { get; set; }
  7. public Architecture SystemArchitecture { get; set; }
  8. public string OperatingSystemVersionString { get; set; }
  9. }
  10. public enum OperatingSystem
  11. {
  12. Windows = 0,
  13. Osx = 1,
  14. Bsd = 2,
  15. Linux = 3
  16. }
  17. public enum Architecture
  18. {
  19. X86 = 0,
  20. X86_X64 = 1,
  21. Arm = 2
  22. }
  23. }