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