Files
moadiran/Shared/DTOs/PermissionAuthenticationDTO.cs

12 lines
334 B
C#
Raw Normal View History

2024-04-17 15:49:34 +03:30
namespace Shared.DTOs
{
public class PermissionAuthenticationDTO
{
public int ID { get; set; }
public int ParentID { get; set; }
public string Title { get; set; }
public bool accessibility { get; set; }
public List<PermissionAuthenticationDTO> ChildPermissions { get; set; }
}
}