DingTalkRoleListResult.cs 488 B

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