changed.PLONDS启动

This commit is contained in:
lincube
2026-05-28 20:07:03 +08:00
parent 313d093257
commit a1cc0ee2bf
20 changed files with 85 additions and 179 deletions

View File

@@ -1,8 +1,8 @@
namespace Plonds.Shared.Models;
public sealed record DdssAssetEntry(
public sealed record PlondsAssetEntry(
string AssetId,
string FileName,
string Sha256,
long Size,
IReadOnlyList<DdssMirrorEntry> Mirrors);
IReadOnlyList<PlondsMirrorEntry> Mirrors);

View File

@@ -1,7 +1,7 @@
namespace Plonds.Shared.Models;
public sealed record DdssManifest(
public sealed record PlondsManifest(
string FormatVersion,
string ReleaseTag,
DateTimeOffset GeneratedAt,
IReadOnlyList<DdssAssetEntry> Assets);
IReadOnlyList<PlondsAssetEntry> Assets);

View File

@@ -1,5 +1,5 @@
namespace Plonds.Shared.Models;
public sealed record DdssMirrorEntry(
public sealed record PlondsMirrorEntry(
string Type,
string Url);