using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.AddressBookGroup { /// /// 创建通讯录组 /// public class AddressBookGroupInRequest { /// /// 通讯录组名称 /// public string AddressBookGroupName { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 父级ID /// public int ParentId { get; set; } /// /// 添加的用户ID /// /// public List UserIds { get; set; } } }