using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TouchSocket.Core
{
///
/// 映射配置
///
public class MapperOption
{
///
/// 需要忽略的属性名称
///
public List IgnoreProperties { get; set; }
///
/// 映射属性名称
///
public Dictionary MapperProperties { get; set; }
}
}