38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
namespace EonaCat.Testers.HttpClient
|
|
{
|
|
public class Actor
|
|
{
|
|
public int id { get; set; }
|
|
public string login { get; set; }
|
|
public string gravatar_id { get; set; }
|
|
public string url { get; set; }
|
|
public string avatar_url { get; set; }
|
|
}
|
|
|
|
public class Repo
|
|
{
|
|
public int id { get; set; }
|
|
public string name { get; set; }
|
|
public string url { get; set; }
|
|
}
|
|
|
|
public class Payload
|
|
{
|
|
public string @ref { get; set; }
|
|
public string ref_type { get; set; }
|
|
public string master_branch { get; set; }
|
|
public string description { get; set; }
|
|
public string pusher_type { get; set; }
|
|
}
|
|
|
|
public class Large_Json
|
|
{
|
|
public string id { get; set; }
|
|
public string type { get; set; }
|
|
public Actor actor { get; set; }
|
|
public Repo repo { get; set; }
|
|
public Payload payload { get; set; }
|
|
public bool @public { get; set; }
|
|
public DateTime created_at { get; set; }
|
|
}
|
|
} |