| 123456789101112131415161718 |
- namespace Application.Features.Admin.Crypto.Board.GetBoards
- {
- public sealed record Response(
- string CoinSymbol,
- string CoinKorName,
- IReadOnlyList<Response.Row> Linked,
- IReadOnlyList<Response.Row> Unlinked
- )
- {
- public sealed record Row(
- int ID,
- string Code,
- string Name,
- string GroupName,
- bool IsActive
- );
- }
- }
|