Files
TinfoilVibeServer/TinfoilVibeServer/Models/FileEntry.cs
T
2025-11-02 20:24:58 +10:30

11 lines
345 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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
NcaMetadataDto? Title // null unless file is an NSP/XCI or an archive containing one
);