using System; using System.Collections.Generic; namespace Internship.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;} } }