mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 07:37:38 +00:00
12 lines
353 B
C#
12 lines
353 B
C#
namespace WinStudentGoalTracker.DataAccess;
|
|
|
|
public class CreateStudentDto
|
|
{
|
|
public required Guid IdStudent { get; set; }
|
|
public Guid? IdProgram { get; set; }
|
|
public string? Identifier { get; set; }
|
|
public int? ProgramYear { get; set; }
|
|
public DateTime? EnrollmentDate { get; set; }
|
|
public DateTime? ExpectedGrad { get; set; }
|
|
}
|