Files
Electron.NET/src/ElectronNET.API/API/Entities/UpdateCheckResult.cs

24 lines
749 B
C#
Raw Normal View History

2019-05-20 01:08:26 +02:00
namespace ElectronNET.API.Entities
{
/// <summary>
///
/// </summary>
/// <remarks>Up-to-date with electron-updater 6.7.2</remarks>
2019-05-20 01:08:26 +02:00
public class UpdateCheckResult
{
/// <summary>
/// Gets or sets the update information discovered by the check.
2019-05-20 01:08:26 +02:00
/// </summary>
public UpdateInfo UpdateInfo { get; set; } = new UpdateInfo();
/// <summary>
/// Gets or sets the download artifacts (if provided by the updater).
2019-05-20 01:08:26 +02:00
/// </summary>
public string[] Download { get; set; }
/// <summary>
/// Gets or sets the cancellation token for the update process.
2019-05-20 01:08:26 +02:00
/// </summary>
public UpdateCancellationToken CancellationToken { get; set; }
}
2025-11-15 08:05:31 +01:00
}