1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.AddressBookGroup
- {
-
-
-
- public class AddressBookGroupInRequest
- {
-
-
-
- public string AddressBookGroupName { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public int ParentId { get; set; }
-
-
-
-
- public List<int> UserIds { get; set; }
- }
- }
|