mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 14:37:34 +00:00
10 lines
263 B
C#
10 lines
263 B
C#
namespace WinStudentGoalTracker.DataAccess;
|
|
|
|
public class UpdateStudentDto
|
|
{
|
|
public string? Identifier { get; set; }
|
|
public int? ProgramYear { get; set; }
|
|
public DateTime? EnrollmentDate { get; set; }
|
|
public DateTime? ExpectedGrad { get; set; }
|
|
}
|