mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-28 21:34:28 +08:00
11 lines
264 B
C#
11 lines
264 B
C#
namespace Plonds.Core.Publishing;
|
|
|
|
public sealed record PlondsDeltaBuildResult(
|
|
string Platform,
|
|
string ChangedZipPath,
|
|
string ManifestPath,
|
|
bool IsFullUpdate,
|
|
bool RequiresCleanInstall,
|
|
string CurrentVersion,
|
|
string? BaselineVersion);
|