PermissionDto.cs
408 Bytes
using HHECS.Model.Entities;
using System.Collections.Generic;
using System.ComponentModel;
namespace HHECS.Model.Dtos
{
public class PermissionDto : Permission, INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public bool HasPerm { get; set; }
public new List<PermissionDto> Childrens { get; set; } = new List<PermissionDto>();
}
}