Response.cs 431 B

123456789101112131415161718
  1. namespace Application.Features.Admin.Crypto.Board.GetBoards
  2. {
  3. public sealed record Response(
  4. string CoinSymbol,
  5. string CoinKorName,
  6. IReadOnlyList<Response.Row> Linked,
  7. IReadOnlyList<Response.Row> Unlinked
  8. )
  9. {
  10. public sealed record Row(
  11. int ID,
  12. string Code,
  13. string Name,
  14. string GroupName,
  15. bool IsActive
  16. );
  17. }
  18. }