student-30864-patch-1 #11

Closed
student-30864 wants to merge 19 commits from student-30864/NTO-2025-Backend-TeamTask-1:student-30864-patch-1 into main
2 changed files with 14 additions and 0 deletions
Showing only changes of commit adee20f7c3 - Show all commits

View File

@@ -0,0 +1,4 @@
package com.example.nto.dto;
public record BookingShortDto(long id, String place) {
}

View File

@@ -0,0 +1,10 @@
package com.example.nto.dto;
import java.util.Map;
public record EmployeeInfoResponseDto(
String name,
String photoUrl,
Map<String, BookingShortDto> booking
) {
}