using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Imports
{
///
/// 实体的子属性
///
public class ImportChildProperty
{
///
/// 实体的属性名称
///
public string EntityProp { get; set; }
///
/// 属性的类型
///
public Type PropType { get; set; }
}
}