11 lines
306 B
C#
11 lines
306 B
C#
namespace YD_Event.Application.Blog.Dtos;
|
|
|
|
public class Mapper : IRegister
|
|
{
|
|
public void Register(TypeAdapterConfig config)
|
|
{
|
|
config.ForType<Categories, TreeSelectOutput>()
|
|
.Map(dest => dest.Label, src => src.Name)
|
|
.Map(dest => dest.Value, src => src.Id);
|
|
}
|
|
} |