/** * DTO used when user wants to get JWT token. * * @export * @class ValidateUserDto */ export interface ValidateUserDto { readonly email: string; readonly role: string; readonly password?: string; }