namespace Dpz.Core.Web.Library;

/// <summary>
/// 允许 Action 查询参数参与页面元数据匹配。
/// </summary>
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class PageMetadataParameterAttribute : Attribute
{
    /// <summary>
    /// 页面元数据路由中使用的参数名称。
    /// </summary>
    public string? Name { get; init; }
}
评论加载中...