File size: 554 Bytes
3418204
 
c42fd03
3418204
 
 
 
 
 
 
 
c42fd03
3418204
 
c42fd03
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace TaskTrackingSystem.Shared.Models.Menu
{
    public class AccessMenuDto
    {
        public string MenuCode { get; set; } = string.Empty;
        public string ParentCode { get; set; } = string.Empty;
        public string MenuName { get; set; } = string.Empty;
        public string? MenuUrl { get; set; }
        public int OrderNo { get; set; }
        public string? Icon { get; set; }
        public bool Visible { get; set; }
        public System.Collections.Generic.List<AccessPermissionDto> Permissions { get; set; } = new();
    }
}