Added DateOfBirth in UserSamlResponse

This commit is contained in:
harish
2024-10-07 15:09:16 +05:30
parent 769d9ac4a2
commit ea3423e6ff
3 changed files with 14 additions and 2 deletions

View File

@@ -2,6 +2,8 @@ package net.gepafin.tendermanagement.model.response;
import lombok.Data;
import java.time.LocalDateTime;
@Data
public class UserSamlResponse {
@@ -10,4 +12,6 @@ public class UserSamlResponse {
private String firstName;
private String lastName;
private LocalDateTime dateOfBirth;
}