User
fix: rename menu access and permissions on dtos controllers and services
c42fd03
Raw
History Blame Contribute Delete
554 Bytes
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();
}
}