mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-21 03:41:19 +08:00
9 lines
193 B
C#
9 lines
193 B
C#
|
|
namespace Plonds.Shared.Models;
|
|||
|
|
|
|||
|
|
public sealed record DdssAssetEntry(
|
|||
|
|
string AssetId,
|
|||
|
|
string FileName,
|
|||
|
|
string Sha256,
|
|||
|
|
long Size,
|
|||
|
|
IReadOnlyList<DdssMirrorEntry> Mirrors);
|