diff options
| author | Andrew Rabert <6550543+nvllsvm@users.noreply.github.com> | 2019-01-19 21:08:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-19 21:08:35 -0500 |
| commit | 469590c9c51f028da454e7e31bea0e37b8f91f15 (patch) | |
| tree | bc6d287699dfeda2bbc85231591896587394be44 /MediaBrowser.Model/System | |
| parent | 97639e5c85dcacf43f430aabb1d1eb0c79f70d23 (diff) | |
| parent | e066a02403b5e850233e18321835a216514ae856 (diff) | |
Merge pull request #508 from EraYaN/api-version-reporting
Update internal versioning and user agents.
Diffstat (limited to 'MediaBrowser.Model/System')
| -rw-r--r-- | MediaBrowser.Model/System/PublicSystemInfo.cs | 4 | ||||
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/MediaBrowser.Model/System/PublicSystemInfo.cs b/MediaBrowser.Model/System/PublicSystemInfo.cs index bc8983fd10..accdc9e601 100644 --- a/MediaBrowser.Model/System/PublicSystemInfo.cs +++ b/MediaBrowser.Model/System/PublicSystemInfo.cs @@ -21,10 +21,10 @@ namespace MediaBrowser.Model.System public string ServerName { get; set; } /// <summary> - /// Gets or sets the version. + /// Gets or sets the server version. /// </summary> /// <value>The version.</value> - public string Version { get; set; } + public string Version { get; set; } /// <summary> /// Gets or sets the operating sytem. diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index b0432ae74a..26f7353307 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -16,6 +16,15 @@ namespace MediaBrowser.Model.System /// <value>The display name of the operating system.</value> public string OperatingSystemDisplayName { get; set; } + /// <summary> + /// The product name. This is the AssemblyProduct name. + /// </summary> + public string ProductName { get; set; } + + /// <summary> + /// Get or sets the package name. + /// </summary> + /// <value>The value of the '-package' command line argument.</value> public string PackageName { get; set; } /// <summary> |
