mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
10 lines
223 B
C#
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; }
|
|
}
|