Response.cs 249 B

1234567891011
  1. namespace Application.Features.Api.Store.Games.Browse;
  2. public sealed record Response(IReadOnlyList<GameRow> Games);
  3. public sealed record GameRow(
  4. int ID,
  5. string KorName,
  6. string? EngName,
  7. string? Thumbnail,
  8. DateTime CreatedAt
  9. );