16 lines
343 B
C#
16 lines
343 B
C#
|
|
using AutoMapper;
|
|||
|
|
using Kurs.Platform.Entities;
|
|||
|
|
|
|||
|
|
namespace Kurs.Platform.DataSources;
|
|||
|
|
|
|||
|
|
public class ActivityAutoMapperProfile : Profile
|
|||
|
|
{
|
|||
|
|
public ActivityAutoMapperProfile()
|
|||
|
|
{
|
|||
|
|
CreateMap<Activity, ActivityDto>();
|
|||
|
|
CreateMap<ActivityItem, ActivityItemDto>();
|
|||
|
|
CreateMap<ActivityFile, ActivityFileDto>();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|