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.

LoginUserQuery.cs 390B

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