Files
HopFrame/src/HopFrame.Web.Admin/Attributes/AdminNameAttribute.cs

6 lines
223 B
C#

namespace HopFrame.Web.Admin.Attributes;
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
public sealed class AdminNameAttribute(string name) : Attribute {
public string Name { get; set; } = name;
}