namespace Yw.WinFrmUI
{
///
/// 用于标识水力实际属性特性
///
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public class HydroRealProsAttribute : Attribute
{
///
///
///
public HydroRealProsAttribute(string[] realPropNames)
{
this.RealPropNames = realPropNames;
}
///
/// 实际属性名称
///
public string[] RealPropNames { get; private set; }
}
}