CheckForUpdateResult.cs 665 B

12345678910111213141516171819202122
  1. using System;
  2. namespace MediaBrowser.Model.Updates
  3. {
  4. /// <summary>
  5. /// Class CheckForUpdateResult
  6. /// </summary>
  7. public class CheckForUpdateResult
  8. {
  9. /// <summary>
  10. /// Gets or sets a value indicating whether this instance is update available.
  11. /// </summary>
  12. /// <value><c>true</c> if this instance is update available; otherwise, <c>false</c>.</value>
  13. public bool IsUpdateAvailable { get; set; }
  14. /// <summary>
  15. /// Gets or sets the available version.
  16. /// </summary>
  17. /// <value>The available version.</value>
  18. public Version AvailableVersion { get; set; }
  19. }
  20. }