mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-11 10:11:27 +00:00
25 lines
581 B
C#
25 lines
581 B
C#
using System.Text.Json.Serialization;
|
|
|
|
public class Subtask
|
|
{
|
|
[JsonPropertyName("subtask")]
|
|
public string Name { get; set; }
|
|
[JsonPropertyName("LLM_prompt")]
|
|
public string LLMPrompt { get; set; }
|
|
}
|
|
|
|
public class Step
|
|
{
|
|
[JsonPropertyName("step")]
|
|
public string Name { get; set; }
|
|
[JsonPropertyName("description")]
|
|
public string Description { get; set; }
|
|
[JsonPropertyName("subtasks")]
|
|
public List<Subtask> Subtasks { get; set; }
|
|
}
|
|
|
|
public class DevLeadPlanResponse
|
|
{
|
|
[JsonPropertyName("steps")]
|
|
public List<Step> Steps { get; set; }
|
|
} |