namespace NSExt.Attributes; /// /// 本地化资源描述特性 /// [AttributeUsage(AttributeTargets.Property | AttributeTargets.Class | AttributeTargets.Field)] public sealed class ResourceDescriptionAttribute : Attribute { /// /// Initializes a new instance of the class. /// #pragma warning disable IDE0290 public ResourceDescriptionAttribute(string resourceName) #pragma warning restore IDE0290 { ResourceName = resourceName; } /// /// 资源名称 /// public string ResourceName { get; } /// /// 资源对象 /// public T ResourceObject { get; set; } }