Working implementation

This commit is contained in:
2025-11-04 07:40:27 +10:30
parent 09e1924996
commit 6c276f1de3
15 changed files with 821 additions and 341 deletions
+4 -2
View File
@@ -1,4 +1,6 @@
namespace TinfoilVibeServer.Models;
using TinfoilVibeServer.Services;
namespace TinfoilVibeServer.Models;
/// <summary>
/// One line in the snapshot the JSON will be an array of these.
@@ -7,5 +9,5 @@ public sealed record FileEntry(
string Path,
long Size,
string Hash, // SHA256 hex
NcaMetadataDto? Title // null unless file is an NSP/XCI or an archive containing one
NcaMetadataWithHash? Title // null unless file is an NSP/XCI or an archive containing one
);