14 lines
281 B
C#
14 lines
281 B
C#
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; }
|
|
}
|
|
}
|