variphx's picture
refactor
b58280e
raw
history blame
182 Bytes
package com.example.app.dtos;
import lombok.Getter;
import lombok.ToString;
@Getter
@ToString
public class JwtRequestDto {
private String email;
private String password;
}