IEPTrack/classes.cs

7 lines
199 B
C#
Raw Normal View History

2021-08-15 00:20:44 +00:00
public class Student
{
public Guid Id { get; set; }
2021-08-15 00:22:07 +00:00
public string FirstName { get; set; }
public string LastName { get; set; }
public DateTime Created { get; set; } = DateTime.Now;
2021-08-15 00:20:44 +00:00
}