namespace Admin.NET.Core;
///
/// 属性字典配置
///
[AttributeUsage(AttributeTargets.Property)]
public class ImportDictAttribute : Attribute
{
///
/// 字典Code
///
public string TypeCode { get; set; }
/////
///// 目标对象类型
/////
//public Type TargetType { get; set; }
public string TargetPropName { get; set; }
}