Initial report

This commit is contained in:
ivan-pelly
2026-03-29 18:49:13 -07:00
parent 637c59d95d
commit bd360b42ff
24 changed files with 803 additions and 1 deletions
@@ -0,0 +1,8 @@
namespace WinStudentGoalTracker.DataAccess;
public class dbProgressReportGoalRow
{
public required Guid GoalId { get; set; }
public string? Category { get; set; }
public string? Description { get; set; }
}