using System; using System.Collections.Generic; namespace InternshipSystem.Core { public class Internship { public long Id { get; set; } public Student Student { get; set; } public InternshipRegistration InternshipRegistration { get; set; } public InternshipProgram InternshipProgram { get; set; } public Report Report { get; set; } public List Approvals { get; set; } public List Documents { get; set; } } }