using administration.Models.HelloFresh.DTO; namespace administration.Models.DTO { public class SmartSearchResponse { public List Items { get; set; } = new(); public SmartSearchDebug Debug { get; set; } } public class SmartSearchDebug { public object Sent { get; set; } public string Llm { get; set; } } }