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

11 lines
358 B
C#

namespace TinfoilVibeServer.Models;
/// <summary>
/// Metadata extracted from a Nintendo NSP/XCI archive.
/// </summary>
public sealed record TitleInfo(
string TitleId, // e.g. 0004000000000000
string Name, // title name
string Version, // e.g. 1.02
bool IsApplication // true for applications, false for patches
);