mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-21 08:41:20 +08:00
11 lines
283 B
C#
11 lines
283 B
C#
|
|
namespace Plonds.Shared.Models;
|
||
|
|
|
||
|
|
public sealed record PlondsMetadataCatalog(
|
||
|
|
string ProtocolName,
|
||
|
|
string ProtocolVersion,
|
||
|
|
string StorageRoot,
|
||
|
|
string MetaRoot,
|
||
|
|
IReadOnlyList<PlondsChannelPointer> Latest,
|
||
|
|
IReadOnlyDictionary<string, string>? Metadata = null);
|
||
|
|
|