mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
14 lines
373 B
C#
14 lines
373 B
C#
namespace LanMountainDesktop.Launcher.Models;
|
|
|
|
/// <summary>
|
|
/// 更新检查结果
|
|
/// </summary>
|
|
public sealed class UpdateCheckResult
|
|
{
|
|
public bool HasUpdate { get; init; }
|
|
public string? LatestVersion { get; init; }
|
|
public string? CurrentVersion { get; init; }
|
|
public ReleaseInfo? Release { get; init; }
|
|
public string? ErrorMessage { get; init; }
|
|
}
|