1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.AddressBookGroup
- {
-
-
-
- public class AddressBookGroupUpRequest
- {
-
-
-
- public string GroupName { get; set; }
-
-
-
- public int AddressBookGroupId { get; set; }
- }
- }
|