From 868a7ce9c8b50bd64c8b5ae33fec77abfd25ef7c Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Thu, 21 Feb 2013 23:23:06 -0500 Subject: isolated clickonce dependancies --- MediaBrowser.Model/Updates/CheckForUpdateResult.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 MediaBrowser.Model/Updates/CheckForUpdateResult.cs (limited to 'MediaBrowser.Model/Updates/CheckForUpdateResult.cs') 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 +{ + /// + /// Class CheckForUpdateResult + /// + public class CheckForUpdateResult + { + /// + /// Gets or sets a value indicating whether this instance is update available. + /// + /// true if this instance is update available; otherwise, false. + public bool IsUpdateAvailable { get; set; } + + /// + /// Gets or sets the available version. + /// + /// The available version. + public Version AvailableVersion { get; set; } + } +} -- cgit v1.2.3