mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 04:07:39 +00:00
Latest
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user