namespace Easy.Admin.Application.Blog.Dtos; public class Mapper : IRegister { public void Register(TypeAdapterConfig config) { config.ForType() .Map(dest => dest.Label, src => src.Name) .Map(dest => dest.Value, src => src.Id); } }