Skip to content

Commit

Permalink
Added img parameter to pet
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianJitaru29 committed May 15, 2024
1 parent 61557d2 commit d2cbf8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EntitiesModel.puml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Pet {
age: String
description: String
breed: String

img: String
}

class Shelter {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/cat/udl/eps/softarch/demo/domain/Pet.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class Pet extends UriEntity<Long> {
String age;
String description;
String breed;

String img;

@ManyToOne
public Shelter isIn;
Expand Down

0 comments on commit d2cbf8d

Please sign in to comment.