source: Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsInterventionInVetClinicId.java@ d1fe9c2

main
Last change on this file since d1fe9c2 was ada7108, checked in by Filip Chorbeski <86695898+FilipChorbeski@…>, 17 months ago

change ids from int to Integer

Co-Authored-By: SazdovaEkaterina <74919977+SazdovaEkaterina@…>

  • Property mode set to 100644
File size: 215 bytes
Line 
1package finki.paw5.model.relations;
2
3import lombok.Data;
4
5import java.io.Serializable;
6
7@Data
8public class PetNeedsInterventionInVetClinicId implements Serializable {
9
10 Integer petId;
11 Integer vetClinicId;
12
13}
Note: See TracBrowser for help on using the repository browser.