-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvent.java
More file actions
35 lines (29 loc) · 826 Bytes
/
Copy pathEvent.java
File metadata and controls
35 lines (29 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
public class Event {
private String eventName;
private String imageLink;
private String eventInfo;
private String eventPrice;
private String seats;
public Event(String eventName, String imageLink, String eventInfo, String eventPrice, String seats) {
this.eventName = eventName;
this.imageLink = imageLink;
this.eventInfo = eventInfo;
this.eventPrice = eventPrice;
this.seats = seats;
}
public String getEventName() {
return eventName;
}
public String getImageLink() {
return imageLink;
}
public String getEventInfo() {
return eventInfo;
}
public String getEventPrice() {
return eventPrice;
}
public String getSeats() {
return seats;
}
}