namespace Application.Features.Admin.Store.Game.Get; public sealed record Response( int ID, string? Code, string KorName, string? EngName, string Publisher, string? Thumbnail, string? BigImage, string? Description, decimal CommissionRate, string? Link, bool IsActive, int Order, DateTime CreatedAt, DateTime? UpdatedAt, string? TrailerUrl, string? MinSpec, string? RecommendedSpec, DateOnly? ReleaseDate, IReadOnlyList GenreIDs, IReadOnlyList CategoryIDs, IReadOnlyList Images, IReadOnlyList Languages ) { public sealed record ImageRow(int ID, string Url); public sealed record LanguageSupportRow(int GameLanguageID, bool Interface, bool FullAudio, bool Subtitles); }