Files
LanMountainDesktop/PenguinLogisticsOnlineNetworkDistributionSystem/src/Plonds.Core/Publishing/PlondsPublishResult.cs

19 lines
457 B
C#
Raw Normal View History

2026-06-01 16:53:23 +08:00
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,
2026-06-01 17:28:26 +08:00
string FilesZipKey,
string FilesZipUrl,
string FilesFolderKey,
string FilesFolderUrl,
int ChangedFileCount,
int FilesFileCount);