system-praktyk-api/src/InternshipSystem.Repository/Model/Course.cs
2020-07-26 00:50:46 +02:00

12 lines
315 B
C#

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