tuiwucarrer/Admin.NET/Plugins/Admin.NET.Plugin.DingTalk/Service/Dto/GetDingTalkCurrentRoleSimpl...

19 lines
540 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace Admin.NET.Plugin.DingTalk;
public class GetDingTalkCurrentRoleSimplelistInput
{
/// <summary>
/// 角色id
/// </summary>
public long role_id { get; set; }
/// <summary>
/// 分页游标从0开始。根据返回结果里的next_cursor是否为空来判断是否还有下一页且再次调用时offset设置成next_cursor的值。
/// </summary>
public int? Offset { get; set; }
/// <summary>
/// 分页大小最大50。
/// </summary>
public int? Size { get; set; }
}