using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Sanhe.Abp.Identity.Dto { public class OrganizationUnitAddUserDto { [Required] public List UserIds { get; set; } } }