cs11dotnet7/vscode/Chapter10/CoursesAndStudents/Student.cs

10 lines
223 B
C#
Raw Normal View History

2022-03-05 16:45:55 +01:00
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; }
}