using System.Collections.Generic; namespace DeskHubSharpRevised.Models; public class Search { public class Owner { /// /// /// public string login { get; set; } /// /// /// public int id { get; set; } /// /// /// public string node_id { get; set; } /// /// /// public string avatar_url { get; set; } /// /// /// public string gravatar_id { get; set; } /// /// /// public string url { get; set; } /// /// /// public string received_events_url { get; set; } /// /// /// public string type { get; set; } } public class ItemsItem { /// /// /// public int id { get; set; } /// /// /// public string node_id { get; set; } /// /// /// public string name { get; set; } /// /// /// public string full_name { get; set; } /// /// /// public Owner owner { get; set; } /// /// /// public string privates { get; set; } /// /// /// public string html_url { get; set; } /// /// /// public string description { get; set; } /// /// /// public string fork { get; set; } /// /// /// public string url { get; set; } /// /// /// public string created_at { get; set; } /// /// /// public string updated_at { get; set; } /// /// /// public string pushed_at { get; set; } /// /// /// public string homepage { get; set; } /// /// /// public int size { get; set; } /// /// /// public int stargazers_count { get; set; } /// /// /// public int watchers_count { get; set; } /// /// /// public string language { get; set; } /// /// /// public int forks_count { get; set; } /// /// /// public int open_issues_count { get; set; } /// /// /// public string master_branch { get; set; } /// /// /// public string default_branch { get; set; } /// /// /// public double score { get; set; } } /// /// /// public int total_count { get; set; } /// /// /// public string incomplete_results { get; set; } /// /// /// public List items { get; set; } }