Command.cs 122 B

123456
  1. using MediatR;
  2. namespace Application.Features.Document.Delete
  3. {
  4. public sealed record Command(int[] IDs) : IRequest;
  5. }