Skip to content

Commit

Permalink
重命名 MenuAttribute 类为 DHMenuAttribute
Browse files Browse the repository at this point in the history
将 `MenuAttribute` 类重命名为 `DHMenuAttribute`。
修改了构造函数的名称,从 `MenuAttribute` 改为 `DHMenuAttribute`。
  • Loading branch information
猿人易 committed Nov 25, 2024
1 parent df9bdde commit 79b5e53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Pek.AspNetCore/Models/DHMenuAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public enum MenuModes
}

/// <summary>菜单特性</summary>
public class MenuAttribute : Attribute
public class DHMenuAttribute : Attribute
{
#region 属性
/// <summary>
Expand Down Expand Up @@ -91,7 +91,7 @@ public class MenuAttribute : Attribute
/// </summary>
/// <param name="order"></param>
/// <param name="visible"></param>
public MenuAttribute(Int32 order, Boolean visible = true)
public DHMenuAttribute(Int32 order, Boolean visible = true)
{
Order = order;
CurrentVisible = visible;
Expand Down

0 comments on commit 79b5e53

Please sign in to comment.