namespace Yw.WinFrmUI { /// /// 用于标识水力标签属性特性 /// [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)] public class IsHydroFlagsProAttribute : Attribute { /// /// /// public IsHydroFlagsProAttribute(bool flagsPro) { this.FlagsPro = flagsPro; } /// /// 是否是标签属性 /// public bool FlagsPro { get; set; } } }