Skip to content

Commit

Permalink
Basic creation for the classes I've been assigned
Browse files Browse the repository at this point in the history
  • Loading branch information
globox97 committed Feb 20, 2024
1 parent ee9a282 commit 3787469
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/cat/udl/eps/softarch/demo/domain/Client.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package cat.udl.eps.softarch.demo.domain;

public class Client {

}
11 changes: 11 additions & 0 deletions src/main/java/cat/udl/eps/softarch/demo/domain/Location.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package cat.udl.eps.softarch.demo.domain;

public class Location {
private int id;
private String address;
private float latitude;
private float longitude;
private String province;
private String municipality;
private String postalCode;
}

0 comments on commit 3787469

Please sign in to comment.