using System.Collections.Generic; using Abp.Application.Services.Dto; namespace ContractService.Basic.Organization.Dto { public class OrgAuthDto : EntityDto<string> { public List<string> PermissionNames { get; set; } } }