Sign in

高翔 / ECS-WHZY · Files

Logo

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ECS-WHZY
  • HHECS.Model
  • Dtos
  • RoleDto.cs
  • 基础版本
    db83472d
    111 authored
    2026-06-04 14:57:24 +0800  
    Browse Code »
RoleDto.cs 275 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
using HHECS.Model.Entities;
using System.ComponentModel;

namespace HHECS.Model.Dtos
{
    public class RoleDto : Role, INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;

        public bool IsSelected { get; set; }

    }


}