Response.cs 176 B

123456
  1. namespace Application.Features.Admin.Donation.List.Export;
  2. public sealed class Response
  3. {
  4. public required IReadOnlyList<Dictionary<string, object?>> Rows { get; init; }
  5. }