Added Goals fields

This commit is contained in:
ivan-pelly
2026-03-15 09:35:58 -07:00
parent 242b1bce27
commit 53d0539d28
66 changed files with 1322 additions and 329 deletions
@@ -7,6 +7,10 @@ public class StudentGoalItem
public string? Description { get; set; }
public string? Category { get; set; }
public string? Baseline { get; set; }
public DateTime? TargetCompletionDate { get; set; }
public DateTime? CloseDate { get; set; }
public bool? Achieved { get; set; }
public string? CloseNotes { get; set; }
public int ProgressEventCount { get; set; }
public int BenchmarkCount { get; set; }
}
@@ -8,4 +8,5 @@ public class StudentResponse
public DateTime? LastEntryDate { get; set; }
public int GoalCount { get; set; }
public int ProgressEventCount { get; set; }
public int BenchmarkCount { get; set; }
}