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,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; }
}