24 lines
447 B
C#
24 lines
447 B
C#
|
|
using AutoMapper;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace UIStandardWebApi.WebCore.AutoMapExtend
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Dto映射配置
|
|||
|
|
/// </summary>
|
|||
|
|
public class AutoMapperConfigs : Profile
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 配置映射
|
|||
|
|
/// </summary>
|
|||
|
|
public AutoMapperConfigs()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|