19 lines
399 B
C#
19 lines
399 B
C#
|
|
using AutoMapper;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.AutoMapper
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 静态全局 AutoMapper 配置文件
|
|||
|
|
/// </summary>
|
|||
|
|
public class AutoMapperConfig
|
|||
|
|
{
|
|||
|
|
public static MapperConfiguration RegisterMappings()
|
|||
|
|
{
|
|||
|
|
return new MapperConfiguration(cfg =>
|
|||
|
|
{
|
|||
|
|
cfg.AddProfile(new CustomProfile());
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|