cs11dotnet7/vscode/Chapter10/CoursesAndStudents/Student.cs
2022-03-05 15:45:55 +00:00

10 lines
223 B
C#

namespace Packt.Shared;
public class Student
{
public int StudentId { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public ICollection<Course>? Courses { get; set; }
}