mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-09 10:01:50 +08:00
41 lines
871 B
C#
41 lines
871 B
C#
#nullable disable
|
|
namespace Netch.Models.GitHubRelease;
|
|
|
|
public class GitHubUser
|
|
{
|
|
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 html_url { get; set; }
|
|
|
|
public string followers_url { get; set; }
|
|
|
|
public string following_url { get; set; }
|
|
|
|
public string gists_url { get; set; }
|
|
|
|
public string starred_url { get; set; }
|
|
|
|
public string subscriptions_url { get; set; }
|
|
|
|
public string organizations_url { get; set; }
|
|
|
|
public string repos_url { get; set; }
|
|
|
|
public string events_url { get; set; }
|
|
|
|
public string received_events_url { get; set; }
|
|
|
|
public string type { get; set; }
|
|
|
|
public bool site_admin { get; set; }
|
|
} |