Files
TaskHybrid/salesbook.Shared/Core/Helpers/MappingProfile.cs
2025-06-26 10:08:21 +02:00

14 lines
262 B
C#

using AutoMapper;
using salesbook.Shared.Core.Dto;
using salesbook.Shared.Core.Entity;
namespace salesbook.Shared.Core.Helpers;
public class MappingProfile : Profile
{
public MappingProfile()
{
CreateMap<StbActivity, ActivityDTO>();
}
}