8 lines
229 B
C#
8 lines
229 B
C#
namespace HopFrame.Web.Model;
|
|
|
|
public sealed class NavigationItem {
|
|
public string Name { get; set; }
|
|
public string Url { get; set; }
|
|
public string Permission { get; set; }
|
|
public string Description { get; set; }
|
|
} |