11 lines
308 B
C#
11 lines
308 B
C#
|
|
namespace Easy.Admin.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);
|
|||
|
|
}
|
|||
|
|
}
|