Add company data to user response in API

This commit is contained in:
harish
2024-10-01 14:57:08 +05:30
parent e4776b3b33
commit 4e7ee29ea0
5 changed files with 26 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ import lombok.NoArgsConstructor;
import lombok.Setter;
import java.time.LocalDateTime;
import java.util.List;
@Getter
@Setter
@@ -43,4 +44,6 @@ public class LoginResponse {
private LocalDateTime createdDate;
private LocalDateTime updatedDate;
private List<CompanyResponse> companies;
}