This commit is contained in:
2026-03-02 17:16:24 -08:00
parent c8315d472c
commit 55d2c42376
20 changed files with 652 additions and 6 deletions
@@ -0,0 +1,8 @@
namespace WinStudentGoalTracker.DataAccess;
public class CreateGoalDto
{
public string? Title { get; set; }
public string? Description { get; set; }
public string? Category { get; set; }
}