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.
15 lines
475 B
15 lines
475 B
3 days ago
|
namespace YbTest.Models
|
||
|
{
|
||
|
public class TransformationConfig
|
||
|
{
|
||
|
// 方法配置集合(对应MethodConfigs属性)
|
||
|
public List<MethodConfig> MethodConfigs { get; set; }
|
||
|
|
||
|
// 对象组装规则集合(对应ObjectAssemblies属性)
|
||
|
public List<ObjectAssembly> ObjectAssemblies { get; set; }
|
||
|
|
||
|
// 对象映射规则集合(对应ObjectMappings属性)
|
||
|
public List<ObjectMapping> ObjectMappings { get; set; }
|
||
|
}
|
||
|
}
|