This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
M2MovieRecommander/src/main/java/com/camillepradel/movierecommender/model/Movie.java

29 lines
518 B
Java

package com.camillepradel.movierecommender.model;
import java.util.List;
public class Movie {
private int id;
private String title;
private List<Genre> genres;
public Movie(int id, String title, List<Genre> genres) {
this.id = id;
this.title = title;
this.genres = genres;
}
public int getId() {
return this.id;
}
public String getTitle() {
return this.title;
}
public List<Genre> getGenres() {
return this.genres;
}
}