namespace API.Models.RecipeModels
{
    public class GenerateRecipeDTO
    {
        public string Dish { get; set; }

        public string Language { get; set; }

        public int NumberOfRecipes { get; set; } = 5;

        public List<string> Allergi { get; set; }
    }
}