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

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

Vraboteniot ja planira dostavata na narackata(https://develop.finki.ukim.mk/projects/cbdb/wiki/useCase10)

  • Property mode set to 100644
File size: 317 bytes
Line 
1package com.example.cookbook.model;
2
3import java.time.LocalDateTime;
4
5public 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.