123456789101112131415161718192021222324252627282930313233343536373839 |
- using System.Collections.Generic;
- using GxPress.EnumConst;
- namespace GxPress.Request.App.AdminVerify
- {
-
-
-
- public class AdminVerifyInsertRequest
- {
-
-
-
- public List<int> UserIds { get; set; }
-
-
-
- public GroupTypeConst VerifyType { get; set; }
-
-
-
- public int SourceId { get; set; }
-
-
-
- public int AdminId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public int SourceType { get; set; }
- }
- }
|