namespace Device; public class Recipe { public Guid DeviceId { get; set; } public Dictionary? RecipeInfo { get; set; } public string? CurrentStepName { get; set; } public string? NextStepName { get; set; } public int CurrentStepRemainTime { get; set; } public int CurrentStepTotalTime { get; set; } public int TotalTime { get; set; } public int TotalRemainTime { get; set; } }