source: src/main/java/com/example/cookbook/model/DostavaDTO.java@ 501396e

Last change on this file since 501396e was 501396e, checked in by Blazho <aleksandar.blazhevski@…>, 5 months ago

added missing files

  • Property mode set to 100644
File size: 451 bytes
Line 
1package com.example.cookbook.model;
2
3import java.time.LocalDateTime;
4
5public record DostavaDTO (String recIme, String adresa, String sostojka, LocalDateTime vreme, String telefon){
6 public DostavaDTO(String recIme, String adresa, String sostojka, LocalDateTime vreme, String telefon) {
7 this.recIme = recIme;
8 this.adresa = adresa;
9 this.sostojka = sostojka;
10 this.vreme = vreme;
11 this.telefon = telefon;
12 }
13}
Note: See TracBrowser for help on using the repository browser.