11 lines
358 B
C#
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
|
|
); |