source: ChapterX.Application/Auth/LoginRequest.cs@ 7fbb91c

main
Last change on this file since 7fbb91c was e294f7d, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago

Added JWT authentication

  • Property mode set to 100644
File size: 145 bytes
RevLine 
[e294f7d]1using MediatR;
2
3namespace ChapterX.Application.Auth
4{
5 public record LoginRequest(string Email, string Password) : IRequest<LoginResponse>;
6}
Note: See TracBrowser for help on using the repository browser.