mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
14 lines
292 B
C#
14 lines
292 B
C#
|
|
namespace Plonds.Shared.Models;
|
||
|
|
|
||
|
|
public sealed record PlondsFileEntry(
|
||
|
|
string Path,
|
||
|
|
string Op,
|
||
|
|
string ContentHash,
|
||
|
|
long Size,
|
||
|
|
string Mode,
|
||
|
|
string? ObjectKey = null,
|
||
|
|
string? Compression = null,
|
||
|
|
string? PatchBaseHash = null,
|
||
|
|
string? PatchObjectKey = null);
|
||
|
|
|