diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-07-27 18:01:29 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-07-27 18:01:29 -0400 |
| commit | 063675bb07f78f99738a3ada061f3e2c16c9cda0 (patch) | |
| tree | f544ea1e036d7de72fa4a62114e82666f31e2868 /MediaBrowser.Model/System | |
| parent | 37c27a26e90b7eff62cec9e2b6a6c003e79fcbe4 (diff) | |
updated nuget
Diffstat (limited to 'MediaBrowser.Model/System')
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 41 |
1 files changed, 22 insertions, 19 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index 5b1e7d6bb..7132d110b 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -6,15 +6,9 @@ namespace MediaBrowser.Model.System /// <summary> /// Class SystemInfo /// </summary> - public class SystemInfo + public class SystemInfo : PublicSystemInfo { /// <summary> - /// Gets or sets the version. - /// </summary> - /// <value>The version.</value> - public string Version { get; set; } - - /// <summary> /// Gets or sets the operating sytem. /// </summary> /// <value>The operating sytem.</value> @@ -87,12 +81,6 @@ namespace MediaBrowser.Model.System public List<string> FailedPluginAssemblies { get; set; } /// <summary> - /// Gets or sets the id. - /// </summary> - /// <value>The id.</value> - public string Id { get; set; } - - /// <summary> /// Gets or sets the program data path. /// </summary> /// <value>The program data path.</value> @@ -153,12 +141,6 @@ namespace MediaBrowser.Model.System public bool SupportsAutoRunAtStartup { get; set; } /// <summary> - /// Gets or sets the name of the server. - /// </summary> - /// <value>The name of the server.</value> - public string ServerName { get; set; } - - /// <summary> /// Initializes a new instance of the <see cref="SystemInfo" /> class. /// </summary> public SystemInfo() @@ -170,4 +152,25 @@ namespace MediaBrowser.Model.System FailedPluginAssemblies = new List<string>(); } } + + public class PublicSystemInfo + { + /// <summary> + /// Gets or sets the name of the server. + /// </summary> + /// <value>The name of the server.</value> + public string ServerName { get; set; } + + /// <summary> + /// Gets or sets the version. + /// </summary> + /// <value>The version.</value> + public string Version { get; set; } + + /// <summary> + /// Gets or sets the id. + /// </summary> + /// <value>The id.</value> + public string Id { get; set; } + } } |
