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