diff options
| author | crobibero <cody@robibe.ro> | 2020-04-21 15:12:04 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-04-21 15:12:04 -0600 |
| commit | 14c94b4e5f6fd7e9ed3483bc2d582f68f8a21c67 (patch) | |
| tree | f5082cbda8d5f207bd00cf06f4f4e32f05c127e9 /MediaBrowser.Model/Updates/InstallationInfo.cs | |
| parent | fff2a40ffc4e5010b26143185c68d221225c1a22 (diff) | |
| parent | a2f19eadf739297cbbc99c9082b0175e8b881054 (diff) | |
Merge branch 'api-migration' of https://github.com/jellyfin/jellyfin into redoc
Diffstat (limited to 'MediaBrowser.Model/Updates/InstallationInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/Updates/InstallationInfo.cs | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/MediaBrowser.Model/Updates/InstallationInfo.cs b/MediaBrowser.Model/Updates/InstallationInfo.cs index 42c2105f5..e0d450d06 100644 --- a/MediaBrowser.Model/Updates/InstallationInfo.cs +++ b/MediaBrowser.Model/Updates/InstallationInfo.cs @@ -8,10 +8,10 @@ namespace MediaBrowser.Model.Updates public class InstallationInfo { /// <summary> - /// Gets or sets the id. + /// Gets or sets the guid. /// </summary> - /// <value>The id.</value> - public Guid Id { get; set; } + /// <value>The guid.</value> + public string Guid { get; set; } /// <summary> /// Gets or sets the name. @@ -20,21 +20,9 @@ namespace MediaBrowser.Model.Updates public string Name { get; set; } /// <summary> - /// Gets or sets the assembly guid. - /// </summary> - /// <value>The guid of the assembly.</value> - public string AssemblyGuid { get; set; } - - /// <summary> /// Gets or sets the version. /// </summary> /// <value>The version.</value> public string Version { get; set; } - - /// <summary> - /// Gets or sets the update class. - /// </summary> - /// <value>The update class.</value> - public PackageVersionClass UpdateClass { get; set; } } } |
