You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

DevPlan.cs 404 B

123456789101112131415161718
  1. namespace DevTeam;
  2. public class DevLeadPlan
  3. {
  4. public required List<StepDescription> Steps { get; set; }
  5. }
  6. public class StepDescription
  7. {
  8. public string? Description { get; set; }
  9. public string? Step { get; set; }
  10. public List<SubtaskDescription>? Subtasks { get; set; }
  11. }
  12. public class SubtaskDescription
  13. {
  14. public string? Subtask { get; set; }
  15. public string? Prompt { get; set; }
  16. }