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

Last change on this file was a226bc3, checked in by Blazho <aleksandar.blazhevski@…>, 8 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
RevLine 
[501396e]1package com.example.cookbook.model;
2
3import java.time.LocalDateTime;
4
[a226bc3]5public record DostavaDTO (String recIme, String adresa, String sostojka){
6 public DostavaDTO(String recIme, String adresa, String sostojka) {
[501396e]7 this.recIme = recIme;
8 this.adresa = adresa;
9 this.sostojka = sostojka;
10 }
[3e572eb]11}
Note: See TracBrowser for help on using the repository browser.