RoleFormPrepOutput.cs 524 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. using VCommon.VApplication.Authorization;
  3. using VCommonCoreExample.AppServices.System.Dto;
  4. namespace VCommonCoreExample.AppServices.System.Roles.Dto
  5. {
  6. public class RoleFormPrepOutput
  7. {
  8. public IReadOnlyCollection<ElTreeNode> AvailablePermissions { get; }
  9. public RoleDto Output { get; set; }
  10. public RoleFormPrepOutput(IReadOnlyCollection<ElTreeNode> availablePermission)
  11. {
  12. AvailablePermissions = availablePermission;
  13. }
  14. }
  15. }