1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.AddressBookGroup
- {
-
-
-
- public class AddressBookInUserRequest
- {
-
-
-
- public AddressBookInUserRequest()
- {
- UserIds=new List<int>();
- DepartmentIds=new List<int>();
- AddressBookGroupIds=new List<int>();
- }
-
-
-
- public List<int> UserIds { get; set; }
-
-
-
- public List<int> DepartmentIds { get; set; }
-
-
-
- public List<int> AddressBookGroupIds { get; set; }
-
-
-
- public int AddressBookGroupId { get; set; }
- }
- }
|