java-learn / src /main /java /com /example /app /dtos /UserAccountCreationDto.java
variphx's picture
refactor
b58280e
raw
history blame
255 Bytes
package com.example.app.dtos;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
@Builder
@Getter
@AllArgsConstructor
public class UserAccountCreationDto {
private final String email;
private final String password;
}