Renamed some of the goal fields to align with business logic

This commit is contained in:
ivan-pelly
2026-03-14 16:30:17 -07:00
parent 7f91e2e557
commit 4d9b83c327
50 changed files with 279 additions and 149 deletions
@@ -4,7 +4,7 @@ public class StudentBenchmarkItem
{
public Guid BenchmarkId { get; set; }
public Guid GoalId { get; set; }
public string? GoalTitle { get; set; }
public string? GoalCategory { get; set; }
public string? Benchmark { get; set; }
public string? CreatedByName { get; set; }
public DateTime CreatedAt { get; set; }
@@ -4,9 +4,9 @@ public class StudentGoalItem
{
public Guid GoalId { get; set; }
public Guid? GoalParentId { get; set; }
public string? Title { get; set; }
public string? Description { get; set; }
public string? Category { get; set; }
public string? Baseline { get; set; }
public int ProgressEventCount { get; set; }
public int BenchmarkCount { get; set; }
}