package com.example.cookbook.model; import java.time.LocalDateTime; public record DostavaDTO (String recIme, String adresa, String sostojka){ public DostavaDTO(String recIme, String adresa, String sostojka) { this.recIme = recIme; this.adresa = adresa; this.sostojka = sostojka; } }