Files
LanMountainDesktop/LanMountainDesktop.Launcher/Models/ReleaseInfo.cs

27 lines
797 B
C#
Raw Normal View History

2026-04-16 01:59:21 +08:00
namespace LanMountainDesktop.Launcher.Models;
/// <summary>
/// GitHub Release 信息
/// </summary>
public sealed class ReleaseInfo
{
public required string TagName { get; init; }
public required string Name { get; init; }
public required bool Prerelease { get; init; }
public required DateTime PublishedAt { get; init; }
public required List<ReleaseAsset> Assets { get; init; }
public string? Body { get; init; }
2026-04-19 12:36:14 +08:00
public string? VelopackFeedUrl { get; init; }
public string? VelopackLegacyReleasesUrl { get; init; }
2026-04-16 01:59:21 +08:00
}
/// <summary>
/// Release 资源文件
/// </summary>
public sealed class ReleaseAsset
{
public required string Name { get; init; }
public required string BrowserDownloadUrl { get; init; }
public required long Size { get; init; }
}