| 12345678910111213 |
- namespace Application.Features.Admin.Store.Game.GetAll;
- public sealed record Response(List<Response.Item> List)
- {
- public sealed record Item(
- int ID,
- string? Code,
- string KorName,
- string? EngName,
- string Publisher,
- decimal CommissionRate
- );
- }
|