aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Updates/CheckForUpdateResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Updates/CheckForUpdateResult.cs')
-rw-r--r--MediaBrowser.Model/Updates/CheckForUpdateResult.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Updates/CheckForUpdateResult.cs b/MediaBrowser.Model/Updates/CheckForUpdateResult.cs
new file mode 100644
index 000000000..48c0b398c
--- /dev/null
+++ b/MediaBrowser.Model/Updates/CheckForUpdateResult.cs
@@ -0,0 +1,22 @@
+using System;
+
+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 Version AvailableVersion { get; set; }
+ }
+}