16 lines
502 B
C#
16 lines
502 B
C#
namespace Marco.Pms.Model.Dtos.AppMenu
|
|
{
|
|
public class CreateWebSideMenuItemDto
|
|
{
|
|
public Guid? Id { get; set; }
|
|
public Guid? ParentMenuId { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Icon { get; set; }
|
|
public bool Available { get; set; } = true;
|
|
public string Link { get; set; } = string.Empty;
|
|
|
|
// Changed from string → List<string>
|
|
public List<Guid> PermissionIds { get; set; } = new List<Guid>();
|
|
}
|
|
}
|