Spaces:
Running
Running
File size: 522 Bytes
3418204 c42fd03 3418204 72f2be7 3418204 c42fd03 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | using System;
namespace TaskTrackingSystem.Shared.Models.Menu
{
public class AccessPermissionDto
{
public string PermissionId { get; set; } = string.Empty;
public string PermissionCode { get; set; } = string.Empty;
public string ParentMenuCode { get; set; } = string.Empty;
public string ActionName { get; set; } = string.Empty;
public string ApiName { get; set; } = string.Empty;
public bool Visible { get; set; }
public int OrderNo { get; set; }
}
}
|