using System; using InternshipSystem.Core; namespace InternshipSystem.Api.Result { public class EditionManagementResult { public Guid Id { get; set; } public DateTime EditionStart { get; set; } public DateTime EditionFinish { get; set; } public DateTime ReportingStart { get; set; } public Course Course { get; set; } } }