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
@@ -5,4 +5,5 @@ public class AddProgressEventDto
public Guid GoalId { get; set; }
public string? Content { get; set; }
public bool IsSensitive { get; set; }
public List<Guid>? BenchmarkIds { get; set; }
}
@@ -6,4 +6,5 @@ public class CreateGoalDto
public string? Category { get; set; }
public string? Baseline { get; set; }
public Guid? GoalParentId { get; set; }
public DateTime? TargetCompletionDate { get; set; }
}
@@ -5,4 +5,8 @@ public class UpdateGoalDto
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; }
}
@@ -0,0 +1,7 @@
namespace WinStudentGoalTracker.DataAccess;
public class UpdateProgressEventDto
{
public string? Content { get; set; }
public List<Guid>? BenchmarkIds { get; set; }
}