package com.ts.us.dto; import java.util.List; public class Cuisine { private int id; private String name; private String country; private List recipesList; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public List getRecipesList() { return recipesList; } public void setRecipesList(List recipesList) { this.recipesList = recipesList; } }