- Timestamp:
- 02/03/24 15:58:58 (9 months ago)
- Branches:
- master
- Children:
- aea04dd
- Parents:
- 3e572eb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/cookbook/model/DostavaDTO.java
r3e572eb r501396e 1 package com.example.cookbook.model;public class Dostava { 1 package com.example.cookbook.model; 2 3 import java.time.LocalDateTime; 4 5 public 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 } 2 13 }
Note:
See TracChangeset
for help on using the changeset viewer.