using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Imports
{
///
/// 二维数据导入
///
public class ImportSplitProperty:ImportProperty
{
///
/// 复杂属性的名称
///
public string ComplexPropName { get; set; }
///
/// 复杂属性的类型
///
public Type ComplexPropType { get; set; }
///
/// 分隔符,默认为逗号
///
public char Speparator { get; set; }
///
/// 子属性类型
///
public ImportChildProperty ChildProperty { get; set; }
///
/// 初始化一个类型的实例
///
public ImportSplitProperty()
{
this.Speparator = ',';
}
}
}