Skip to content
Snippets Groups Projects
Commit a43f60ad authored by Henrik's avatar Henrik
Browse files

Merge branch 'feat/delete-account-endpoint' into 'master'

feat: config to user dto

See merge request !99
parents 83ec7652 a19d3f08
Branches
No related tags found
1 merge request!99feat: config to user dto
Pipeline #285514 passed
package no.ntnu.idi.stud.savingsapp.dto.user;
import lombok.Data;
import no.ntnu.idi.stud.savingsapp.dto.configuration.ConfigurationDTO;
import java.sql.Timestamp;
@Data
public class UserDTO {
private long id;
private long id;
private String firstName;
private String lastName;
private Long profileImage;
private Long bannerImage;
private String email;
private Timestamp createdAt;
private String role;
private String subscriptionLevel;
private Long checkingAccountBBAN;
private Long savingsAccountBBAN;
private PointDTO point;
private StreakDTO streak;
private ConfigurationDTO configuration;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment