This commit is contained in:
2022-02-02 19:20:57 +01:00
parent 3b3670af19
commit 527ba10c1a
4 changed files with 65 additions and 8 deletions

38
HttpClient/Large_Json.cs Normal file
View 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; }
}
}