GetDingTalkCurrentRoleSimplelistInput.cs 540 B

12345678910111213141516171819
  1. namespace Admin.NET.Plugin.DingTalk;
  2. public class GetDingTalkCurrentRoleSimplelistInput
  3. {
  4. /// <summary>
  5. /// 角色id
  6. /// </summary>
  7. public long role_id { get; set; }
  8. /// <summary>
  9. /// 分页游标,从0开始。根据返回结果里的next_cursor是否为空来判断是否还有下一页,且再次调用时offset设置成next_cursor的值。
  10. /// </summary>
  11. public int? Offset { get; set; }
  12. /// <summary>
  13. /// 分页大小,最大50。
  14. /// </summary>
  15. public int? Size { get; set; }
  16. }