namespace HopFrame.Web.Admin.Attributes;
///
/// This attribute specifies the url of the admin page and needs to be applied on the AdminPage property in the AdminContext directly
///
/// The page url: '/administration/{url}'
[AttributeUsage(AttributeTargets.Property)]
public sealed class AdminPageUrlAttribute(string url) : Attribute {
public string Url { get; set; } = url;
}