AuthDto.cs 226 B

12345678910
  1. using System.Collections.Generic;
  2. using Abp.Application.Services.Dto;
  3. namespace WeApp.BaseSystem.Users.Dto
  4. {
  5. public class AuthDto : EntityDto<int>
  6. {
  7. public List<string> PermissionNames { get; set; }
  8. }
  9. }