mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 02:57:36 +00:00
11 lines
303 B
C#
11 lines
303 B
C#
namespace WinStudentGoalTracker.DataAccess;
|
|
|
|
public class UpdateStudentDto
|
|
{
|
|
public int? IdProgram { get; set; }
|
|
public string? Identifier { get; set; }
|
|
public int? ProgramYear { get; set; }
|
|
public DateTime? EnrollmentDate { get; set; }
|
|
public DateTime? ExpectedGrad { get; set; }
|
|
}
|