source:
src/main/java/com/example/cookbook/model/DostavaDTO.java
Last change on this file was a226bc3, checked in by , 9 months ago | |
---|---|
|
|
File size: 317 bytes |
Line | |
---|---|
1 | package com.example.cookbook.model; |
2 | |
3 | import java.time.LocalDateTime; |
4 | |
5 | public record DostavaDTO (String recIme, String adresa, String sostojka){ |
6 | public DostavaDTO(String recIme, String adresa, String sostojka) { |
7 | this.recIme = recIme; |
8 | this.adresa = adresa; |
9 | this.sostojka = sostojka; |
10 | } |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.