123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.AddressBookGroup
- {
-
-
-
- public class AddressBookGroupSearchRequest
- {
-
-
-
- public int UserId { get; set; }
-
-
-
- public List<int> FolderIds { get; set; }
-
-
-
-
- public int ParendId { get; set; }
-
-
-
- public AddressBookGroupSearchRequest()
- {
- FolderIds = new List<int>();
- }
- }
- }
|