Files
administration/Models/HelloFresh/DTO/SmartSearchResponse.cs
2025-09-03 20:17:50 +02:00

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; }
}
}