diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-04 15:51:59 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-04 15:51:59 -0400 |
| commit | 67ad1db6b77b2c2cb6d81c22808d99564a5f3ebc (patch) | |
| tree | 680573c554a180eff4c06e40c9dd17556570eff9 /MediaBrowser.Model/System | |
| parent | 72aaecb27930e04aa356febf35db2372bc417166 (diff) | |
add environment info
Diffstat (limited to 'MediaBrowser.Model/System')
| -rw-r--r-- | MediaBrowser.Model/System/IEnvironmentInfo.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/MediaBrowser.Model/System/IEnvironmentInfo.cs b/MediaBrowser.Model/System/IEnvironmentInfo.cs new file mode 100644 index 000000000..3fcacb30d --- /dev/null +++ b/MediaBrowser.Model/System/IEnvironmentInfo.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MediaBrowser.Model.System +{ + public interface IEnvironmentInfo + { + MediaBrowser.Model.System.OperatingSystem OperatingSystem { get; } + string OperatingSystemName { get; } + string OperatingSystemVersion { get; } + } + + public enum OperatingSystem + { + Windows, + Linux, + OSX + } +} |
