// Copyright (c) Microsoft. All rights reserved. using System.Text.Json.Serialization; namespace AGUIDojoServer; internal sealed class Recipe { [JsonPropertyName("title")] public string Title { get; set; } = string.Empty; [JsonPropertyName("skill_level")] public string SkillLevel { get; set; } = string.Empty; [JsonPropertyName("cooking_time")] public string CookingTime { get; set; } = string.Empty; [JsonPropertyName("special_preferences")] public List SpecialPreferences { get; set; } = []; [JsonPropertyName("ingredients")] public List Ingredients { get; set; } = []; [JsonPropertyName("instructions")] public List Instructions { get; set; } = []; }