PermissionDto.cs
490 Bytes
using HHECS.Model.Entities;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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>();
}
}