all fix
Some checks failed
Android Test / validate-and-test (pull_request) Has been cancelled

This commit is contained in:
2025-12-11 14:02:30 +04:00
parent 83b3202ea2
commit 6c632daf1e
18 changed files with 337 additions and 17 deletions

View File

@@ -0,0 +1,16 @@
package com.example.nto.dto;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.time.LocalDate;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class CreateBookingRequest {
private LocalDate date;
private Long placeId;
}