You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
545 B
24 lines
545 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace TouchSocket.Core |
|
{ |
|
/// <summary> |
|
/// 映射配置 |
|
/// </summary> |
|
public class MapperOption |
|
{ |
|
/// <summary> |
|
/// 需要忽略的属性名称 |
|
/// </summary> |
|
public List<string> IgnoreProperties { get; set; } |
|
|
|
/// <summary> |
|
/// 映射属性名称 |
|
/// </summary> |
|
public Dictionary<string, string> MapperProperties { get; set; } |
|
} |
|
}
|
|
|