mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 08:04:26 +08:00
19 lines
457 B
C#
19 lines
457 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,
|
|
string FilesZipKey,
|
|
string FilesZipUrl,
|
|
string FilesFolderKey,
|
|
string FilesFolderUrl,
|
|
int ChangedFileCount,
|
|
int FilesFileCount);
|