DingTalkRoleListResult.cs 488 B

123456789101112131415
  1. 
  2. namespace Admin.NET.Plugin.DingTalk;
  3. public class DingTalkRoleListResult
  4. {
  5. [JsonProperty("groupId")]
  6. [System.Text.Json.Serialization.JsonPropertyName("groupId")]
  7. public long groupId { get; set; }
  8. [JsonProperty("name")]
  9. [System.Text.Json.Serialization.JsonPropertyName("name")]
  10. public string name { get; set; }
  11. [JsonProperty("roles")]
  12. [System.Text.Json.Serialization.JsonPropertyName("roles")]
  13. public List<DingTalkRoleResult> roles { get; set; }
  14. }