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/CheckForUpdateResult.cs | |
| parent | 8e9aeb84b18f43b6fe8dd89ab84f1627bf2e8dbd (diff) | |
standardize plugin version and guid properties
Diffstat (limited to 'MediaBrowser.Model/Updates/CheckForUpdateResult.cs')
| -rw-r--r-- | MediaBrowser.Model/Updates/CheckForUpdateResult.cs | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/MediaBrowser.Model/Updates/CheckForUpdateResult.cs b/MediaBrowser.Model/Updates/CheckForUpdateResult.cs deleted file mode 100644 index 883fc636b..000000000 --- a/MediaBrowser.Model/Updates/CheckForUpdateResult.cs +++ /dev/null @@ -1,29 +0,0 @@ -namespace MediaBrowser.Model.Updates -{ - /// <summary> - /// Class CheckForUpdateResult. - /// </summary> - public class CheckForUpdateResult - { - /// <summary> - /// Gets or sets a value indicating whether this instance is update available. - /// </summary> - /// <value><c>true</c> if this instance is update available; otherwise, <c>false</c>.</value> - public bool IsUpdateAvailable { get; set; } - - /// <summary> - /// Gets or sets the available version. - /// </summary> - /// <value>The available version.</value> - public string AvailableVersion - { - get => Package != null ? Package.versionString : "0.0.0.1"; - set { } // need this for the serializer - } - - /// <summary> - /// Get or sets package information for an available update - /// </summary> - public VersionInfo Package { get; set; } - } -} |
