using System.Collections.Generic; namespace InternshipSystem.Core { public class Course { public int Id { get; set; } public string Name { get; set; } public List DesiredSemesters { get; set; } public List ProgramEntries { get; set; } } }