mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 00:38:44 +00:00
11 lines
283 B
C#
11 lines
283 B
C#
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; }
|
|
}
|