14 lines
462 B
C#
14 lines
462 B
C#
namespace TinfoilVibeServer.Models;
|
||
|
||
/// <summary>
|
||
/// One entry that is read from the JSON files on GitHub and can also be
|
||
/// constructed from an NSP. The key for the dictionary that stores these
|
||
/// objects is <see cref="TitleId"/>.
|
||
/// </summary>
|
||
public sealed record TitleInfoDto(
|
||
string TitleId, // 16‑digit hex – “0004000000000000”
|
||
string Name,
|
||
string Id,
|
||
int? ReleaseDate,
|
||
long NSUID,
|
||
string Version); |