using System; using System.Collections.Generic; namespace InternshipSystem.Core { public class Edition { public int Id { get; set; } public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } public DateTime IPPDeadlineDate { get; set; } public List Subjects { get; set;} public List Internships { get; set; } } }