generated from Integry/Template_NetMauiBlazorHybrid
14 lines
262 B
C#
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>();
|
|
}
|
|
}
|