Upload files to "src/main/java/com/example/nto/dto"
Some checks failed
Android Test / validate-and-test (pull_request) Has been cancelled

This commit is contained in:
2025-12-08 12:08:16 +00:00
parent 4304812e5f
commit adee20f7c3
2 changed files with 14 additions and 0 deletions

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
) {
}