system-praktyk-api/src/Internship.Core/InternshipProgramSubject.cs

9 lines
213 B
C#

namespace Internship.Core
{
public class InternshipProgramSubject
{
public int Id { get; set; }
public Course Course { get; set; }
public string Description { get; set; }
}
}