using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.AddressBookGroup { /// /// 通讯录添加用户 /// public class AddressBookInUserRequest { /// /// /// public AddressBookInUserRequest() { UserIds=new List(); DepartmentIds=new List(); AddressBookGroupIds=new List(); } /// /// 用户ID /// public List UserIds { get; set; } /// /// 部门组ID /// public List DepartmentIds { get; set; } /// /// 联系人组ID /// public List AddressBookGroupIds { get; set; } /// /// 联系人组ID /// public int AddressBookGroupId { get; set; } } }