This commit is contained in:
ivan-pelly
2026-04-19 14:09:30 -07:00
parent 09673ab53c
commit cd204e4d10
33 changed files with 1521 additions and 11 deletions
@@ -0,0 +1,7 @@
namespace WinStudentGoalTracker.DataAccess;
public class AdminCreateProgramDto
{
public string? Name { get; set; }
public string? Description { get; set; }
}
@@ -0,0 +1,10 @@
namespace WinStudentGoalTracker.DataAccess;
public class AdminCreateUserDto
{
public string? Email { get; set; }
public string? Name { get; set; }
public string? Password { get; set; }
public string? ProgramId { get; set; }
public string? RoleId { get; set; }
}
@@ -0,0 +1,12 @@
namespace WinStudentGoalTracker.DataAccess;
public class RegisterDto
{
public string? Email { get; set; }
public string? Password { get; set; }
public string? Name { get; set; }
public string? DistrictName { get; set; }
public string? DistrictContactEmail { get; set; }
public string? ProgramName { get; set; }
public string? ProgramDescription { get; set; }
}