2025-12-17 11:12:13 +08:00

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);
}
}