This commit is contained in:
AndrewTrieu
2022-12-15 17:31:20 +02:00
commit 04e72003de
9 changed files with 684 additions and 0 deletions

28
src/Venue.java Normal file
View File

@@ -0,0 +1,28 @@
public class Venue {
// attributes
protected String name;
protected String location;
// constructor
public Venue(String name, String location) {
this.name = name;
this.location = location;
}
// methods
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
}