Ignore:
Timestamp:
02/06/23 20:10:28 (22 months ago)
Author:
DenicaKj <dkorvezir@…>
Branches:
master
Children:
d09caa7
Parents:
b5ce654
Message:

Adding Events To Home Page

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/example/moviezone/model/Event.java

    rb5ce654 r0fb69cc  
    2424    String duration;
    2525    String repeating;
    26 
     26    String img_url;
    2727    LocalDate start_date;
    2828
    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) {
    3030        this.theme = theme;
    3131        this.duration = duration;
     32        this.img_url=img_url;
    3233        this.repeating = repeating;
    3334        this.start_date = start_date;
     
    3738
    3839    }
     40
    3941}
Note: See TracChangeset for help on using the changeset viewer.