11 lines
345 B
C#
11 lines
345 B
C#
namespace TinfoilVibeServer.Models;
|
||
|
||
/// <summary>
|
||
/// One line in the snapshot – the JSON will be an array of these.
|
||
/// </summary>
|
||
public sealed record FileEntry(
|
||
string Path,
|
||
long Size,
|
||
string Hash, // SHA‑256 hex
|
||
NcaMetadataDto? Title // null unless file is an NSP/XCI or an archive containing one
|
||
); |