mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-22 00:54:26 +08:00
14 lines
331 B
C#
14 lines
331 B
C#
|
|
namespace Plonds.Core.Publishing;
|
||
|
|
|
||
|
|
public sealed record PlondsPublishResult(
|
||
|
|
string ReleaseTag,
|
||
|
|
string Version,
|
||
|
|
string VersionPrefix,
|
||
|
|
string ManifestKey,
|
||
|
|
string ManifestUrl,
|
||
|
|
string ChangedZipKey,
|
||
|
|
string ChangedZipUrl,
|
||
|
|
string ChangedFolderKey,
|
||
|
|
string ChangedFolderUrl,
|
||
|
|
int ChangedFileCount);
|