first commit

This commit is contained in:
2025-11-01 19:18:39 +10:30
commit d1d2c9f41e
26 changed files with 1052 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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, // SHA256 hex
TitleInfo? Title // null unless file is an NSP/XCI or an archive containing one
);