Updates to encompass benchmarks

This commit is contained in:
ivan-pelly
2026-03-07 16:10:55 -08:00
parent 69e96403f4
commit 3d531298e2
65 changed files with 2505 additions and 86 deletions
@@ -0,0 +1,7 @@
namespace WinStudentGoalTracker.DataAccess;
public class CreateBenchmarkDto
{
public Guid GoalId { get; set; }
public string Benchmark { get; set; } = string.Empty;
}