mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 16:14:28 +08:00
10 lines
222 B
C#
10 lines
222 B
C#
|
|
namespace Plonds.Shared.Models;
|
||
|
|
|
||
|
|
public sealed record PlondsComponent(
|
||
|
|
string Id,
|
||
|
|
string Root,
|
||
|
|
string Mode,
|
||
|
|
IReadOnlyList<PlondsFileEntry> Files,
|
||
|
|
IReadOnlyDictionary<string, string>? Metadata = null);
|
||
|
|
|