Changeset 0fb69cc for src/main/java/com/example/moviezone/model
- Timestamp:
- 02/06/23 20:10:28 (22 months ago)
- Branches:
- master
- Children:
- d09caa7
- Parents:
- b5ce654
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/model/Event.java
rb5ce654 r0fb69cc 24 24 String duration; 25 25 String repeating; 26 26 String img_url; 27 27 LocalDate start_date; 28 28 29 public Event(String theme, String duration, String repeating, LocalDate start_date ) {29 public Event(String theme, String duration, String repeating, LocalDate start_date,String img_url) { 30 30 this.theme = theme; 31 31 this.duration = duration; 32 this.img_url=img_url; 32 33 this.repeating = repeating; 33 34 this.start_date = start_date; … … 37 38 38 39 } 40 39 41 }
Note:
See TracChangeset
for help on using the changeset viewer.