namespace ElectronNET.API.Entities { /// /// /// /// Up-to-date with electron-updater 6.7.2 public class UpdateCheckResult { /// /// Gets or sets the update information discovered by the check. /// public UpdateInfo UpdateInfo { get; set; } = new UpdateInfo(); /// /// Gets or sets the download artifacts (if provided by the updater). /// public string[] Download { get; set; } /// /// Gets or sets the cancellation token for the update process. /// public UpdateCancellationToken CancellationToken { get; set; } } }