system-praktyk-api/src/InternshipSystem.Api/Result/EditionManagementResult.cs
2020-11-28 22:09:44 +01:00

15 lines
413 B
C#

using System;
using InternshipSystem.Core;
using InternshipSystem.Core.Entity;
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; }
}
}