17 lines
385 B
C#
17 lines
385 B
C#
using administration.Models.HelloFresh.DTO;
|
|
|
|
namespace administration.Models.DTO
|
|
{
|
|
public class SmartSearchResponse
|
|
{
|
|
public List<IngredientItemDto> Items { get; set; } = new();
|
|
public SmartSearchDebug Debug { get; set; }
|
|
}
|
|
|
|
public class SmartSearchDebug
|
|
{
|
|
public object Sent { get; set; }
|
|
public string Llm { get; set; }
|
|
}
|
|
}
|