aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Updates/CheckForUpdateResult.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-04-22 13:16:08 +0200
committerGitHub <noreply@github.com>2020-04-22 13:16:08 +0200
commit07326c1d9b1a74b6802cd4187104c4272d59e28e (patch)
tree1061f46729d67671eeb9b6bd71320732e83ccef9 /MediaBrowser.Model/Updates/CheckForUpdateResult.cs
parentdaed41815f23795aad7f54965a8ef7eae44a1e08 (diff)
parenta85b1dcba663fe3bbb2441380cd8da382c92f2bd (diff)
Merge branch 'master' into fix-auth-response-codes
Diffstat (limited to 'MediaBrowser.Model/Updates/CheckForUpdateResult.cs')
-rw-r--r--MediaBrowser.Model/Updates/CheckForUpdateResult.cs29
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 be1b08223..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.versionStr : "0.0.0.1";
- set { } // need this for the serializer
- }
-
- /// <summary>
- /// Get or sets package information for an available update
- /// </summary>
- public PackageVersionInfo Package { get; set; }
- }
-}