using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Imports { /// /// 复杂类型数据属性类 /// public class ImportComplexProperty:ImportProperty { /// /// 复杂属性的名称 /// public string ComplexPropName { get; set; } /// /// 复杂属性的类型 /// public Type ComplexPropType { get; set; } /// /// 子属性类型 /// public ImportChildProperty ChildProperty { get; set; } } }