using System.Collections.Generic; namespace ZhonTai.Admin.Services.User.Dto; public class UserGetOutput : UserUpdateInput { /// /// 角色列表 /// public ICollection Roles { get; set; } /// /// 部门列表 /// public ICollection Orgs { get; set; } }