14 lines
392 B
C#
14 lines
392 B
C#
namespace Marco.Pms.Model.Dtos.AppMenu
|
|
{
|
|
public class CreateSubMenuItemDto
|
|
{
|
|
public required string Text { get; set; }
|
|
public bool Available { get; set; } = true;
|
|
|
|
public required string Link { get; set; } = string.Empty;
|
|
|
|
// Changed from string → List<string>
|
|
public List<string> PermissionIds { get; set; } = new List<string>();
|
|
}
|
|
}
|