system-praktyk-api/src/Internship.Core/Internship.cs
2020-05-22 08:59:16 +02:00

11 lines
313 B
C#

namespace Internship.Core
{
public class Internship
{
public Intern Intern { get; set; }
public Edition Edition { get; set; }
public Report Report { get; set; }
public BranchOffice BranchOffice { get; set; }
public InternshipProgram Program { get; set; }
}
}