Xiaoyun Zhang 9ba14ee15b
Fix dotnet test and reformat dotnet code (#3603)
* fix test

* install aspire workload

* format

* fix build error

* fix format

* format
2024-10-02 14:42:27 -04:00

19 lines
405 B
C#

namespace DevTeam;
public class DevLeadPlan
{
public required List<StepDescription> Steps { get; set; }
}
public class StepDescription
{
public string? Description { get; set; }
public string? Step { get; set; }
public List<SubtaskDescription>? Subtasks { get; set; }
}
public class SubtaskDescription
{
public string? Subtask { get; set; }
public string? Prompt { get; set; }
}