Response.cs 299 B

12345678910111213
  1. namespace Application.Features.Admin.Store.Game.GetAll;
  2. public sealed record Response(List<Response.Item> List)
  3. {
  4. public sealed record Item(
  5. int ID,
  6. string? Code,
  7. string KorName,
  8. string? EngName,
  9. string Publisher,
  10. decimal CommissionRate
  11. );
  12. }