mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
15 lines
369 B
C#
15 lines
369 B
C#
|
|
namespace Plonds.Shared.Models;
|
|||
|
|
|
|||
|
|
public sealed record PlondsReleasePlatformEntry(
|
|||
|
|
string Platform,
|
|||
|
|
string DistributionId,
|
|||
|
|
string? BaselineTag,
|
|||
|
|
string? BaselineVersion,
|
|||
|
|
string TargetVersion,
|
|||
|
|
bool IsFullPayload,
|
|||
|
|
string FilesZipAsset,
|
|||
|
|
string UpdateZipAsset,
|
|||
|
|
string FileMapAsset,
|
|||
|
|
string FileMapSignatureAsset,
|
|||
|
|
string Sha256);
|