12 lines
334 B
C#
12 lines
334 B
C#
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; }
|
|
}
|
|
}
|