You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CreateRequestCommand.cs 365B

1234567891011121314
  1. using Diligent.WebAPI.Host.DTOs.Request;
  2. using MediatR;
  3. namespace Diligent.WebAPI.Host.Mediator.Request.Commands
  4. {
  5. public class CreateRequestCommand:IRequest<Data.Entities.Request>
  6. {
  7. public RequestCreateDTO Request { get; }
  8. public CreateRequestCommand(RequestCreateDTO request)
  9. {
  10. Request = request;
  11. }
  12. }
  13. }