erp-platform/api/src/Kurs.Platform.Application/Routes/RouteAutoMapperProfile.cs
2025-06-29 00:34:28 +03:00

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>();
}
}