namespace Application.Features.Api.Store.Games.Browse; public sealed record Response(IReadOnlyList<GameRow> Games); public sealed record GameRow( int ID, string KorName, string? EngName, string? Thumbnail, DateTime CreatedAt );