diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-04-11 19:52:40 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2020-04-11 19:52:40 +0900 |
| commit | 78abbcc25117a20511f70f65c89f2f1063d0e547 (patch) | |
| tree | d7d302d6ae0ad507246af46ddf6d9ad7e6a9dd26 /MediaBrowser.Model/Updates/InstallationInfo.cs | |
| parent | 8e9aeb84b18f43b6fe8dd89ab84f1627bf2e8dbd (diff) | |
standardize plugin version and guid properties
Diffstat (limited to 'MediaBrowser.Model/Updates/InstallationInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/Updates/InstallationInfo.cs | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/MediaBrowser.Model/Updates/InstallationInfo.cs b/MediaBrowser.Model/Updates/InstallationInfo.cs index 95357262a..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,12 +20,6 @@ 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> |
