mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-22 09:14:25 +08:00
14 lines
347 B
C#
14 lines
347 B
C#
|
|
namespace Plonds.Core.Publishing;
|
|||
|
|
|
|||
|
|
public sealed record PlondsDeltaBuildResult(
|
|||
|
|
string Platform,
|
|||
|
|
string DistributionId,
|
|||
|
|
string UpdateArchivePath,
|
|||
|
|
string FileMapPath,
|
|||
|
|
string FileMapSignaturePath,
|
|||
|
|
string SummaryPath,
|
|||
|
|
bool IsFullPayload,
|
|||
|
|
string? BaselineTag,
|
|||
|
|
string? BaselineVersion,
|
|||
|
|
string TargetVersion);
|