14 lines
267 B
C#
14 lines
267 B
C#
using AutoMapper;
|
|
using Kurs.Platform.Entities;
|
|
using Kurs.Platform.Routes;
|
|
|
|
namespace Kurs.Platform;
|
|
|
|
public class RouteAutoMapperProfile : Profile
|
|
{
|
|
public RouteAutoMapperProfile()
|
|
{
|
|
// Blog mappings
|
|
CreateMap<Route, RouteDto>();
|
|
}
|
|
}
|