using System; using System.ComponentModel.DataAnnotations; using Volo.Abp.Application.Dtos; namespace Sanhe.Abp.Identity.Dto { public class OrganizationUnitGetChildrenDto : IEntityDto { [Required] public Guid Id { get; set; } public bool Recursive { get; set; } } }