mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 16:14:28 +08:00
10 lines
203 B
C#
10 lines
203 B
C#
|
|
namespace Plonds.Shared.Models;
|
||
|
|
|
||
|
|
public sealed record PlondsMirrorAsset(
|
||
|
|
string Platform,
|
||
|
|
string Arch,
|
||
|
|
string Url,
|
||
|
|
string? FileName = null,
|
||
|
|
string? Sha256 = null,
|
||
|
|
long Size = 0);
|