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.

RegisterUserCommand.cs 412B

1234567891011121314
  1. using Diligent.WebAPI.Host.DTOs.Customer;
  2. using MediatR;
  3. namespace Diligent.WebAPI.Host.Mediator.Authentication.Commands
  4. {
  5. public class RegisterUserCommand:IRequest<CustomerReadDTO>
  6. {
  7. public CustomerCreateDTO CustomerCreateDTO { get; set; }
  8. public RegisterUserCommand(CustomerCreateDTO customerCreateDTO)
  9. {
  10. CustomerCreateDTO = customerCreateDTO;
  11. }
  12. }
  13. }