This commit is contained in:
Michal Bohdanowicz 2021-01-10 18:28:23 +01:00
parent 4bdc04858e
commit ca81ce2604
2 changed files with 0 additions and 12 deletions

View File

@ -20,8 +20,6 @@ namespace InternshipSystem.Api
opt => opt.MapFrom(edition => edition.IsOpen ? "Open" : "Archival"));
CreateMap<Edition, EditionManagementResult>();
CreateMap<Edition, EditionReportSchemaResult>();
CreateMap<Edition, EditionDetailsResult>();

View File

@ -1,10 +0,0 @@
using System.Collections.Generic;
using InternshipSystem.Core.Entity;
namespace InternshipSystem.Api.Result
{
public class EditionReportSchemaResult
{
public List<ReportField> ReportSchema { get; set; }
}
}