Command.cs 249 B

123456789
  1. using MediatR;
  2. namespace Application.Features.Banner.Position.Save
  3. {
  4. public sealed record Command(List<Command.Row> Items) : IRequest<Response>
  5. {
  6. public sealed record Row(int? ID, string Code, string Subject, bool IsActive);
  7. }
  8. }