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

9 lines
217 B
C#

namespace InternshipSystem.Core
{
public class InternshipProgramEntry
{
public int Id { get; set; }
public Course Course { get; set; }
public string Description { get; set; }
}
}