17 lines
470 B
C#
17 lines
470 B
C#
namespace Marco.Pms.Model.Dtos.AppMenu
|
|
{
|
|
public class UpdateMenuItemDto
|
|
{
|
|
public required Guid Id { get; set; }
|
|
|
|
public required string Text { get; set; }
|
|
public required string Icon { get; set; }
|
|
public bool Available { get; set; } = true;
|
|
|
|
public required string Link { get; set; }
|
|
|
|
// Changed from string → List<string>
|
|
public List<string> PermissionIds { get; set; } = new List<string>();
|
|
}
|
|
}
|