Updated
This commit is contained in:
38
HttpClient/Large_Json.cs
Normal file
38
HttpClient/Large_Json.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user