system-praktyk-api/src/InternshipSystem.Core/Entity/Internship/Internship.cs

16 lines
500 B
C#

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<Approval> Approvals { get; set; }
public List<Document> Documents { get; set; }
}
}