Files
TinfoilVibeServer/TinfoilVibeServer/Models/TitleInfoDto.cs
T
2025-11-04 07:40:27 +10:30

14 lines
462 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 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, // 16digit hex “0004000000000000”
string Name,
string Id,
int? ReleaseDate,
long NSUID,
string Version);