using System.Collections.Generic; using Abp.Application.Services.Dto; namespace WeApp.BaseSystem.Users.Dto { public class AuthDto : EntityDto<int> { public List<string> PermissionNames { get; set; } } }