mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
10 lines
259 B
C#
10 lines
259 B
C#
|
|
namespace Plonds.Shared.Models;
|
|||
|
|
|
|||
|
|
public sealed record PlondsReleaseManifest(
|
|||
|
|
string FormatVersion,
|
|||
|
|
string ReleaseTag,
|
|||
|
|
string Version,
|
|||
|
|
string Channel,
|
|||
|
|
DateTimeOffset GeneratedAt,
|
|||
|
|
IReadOnlyList<PlondsReleasePlatformEntry> Platforms);
|