6 lines
223 B
C#
6 lines
223 B
C#
namespace HopFrame.Web.Admin.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class AdminDescriptionAttribute(string description) : Attribute {
|
|
public string Description { get; set; } = description;
|
|
} |