-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
411421b
commit c7bcedf
Showing
9 changed files
with
349 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace BalenaNebraUpdater.Objs | ||
{ | ||
public class BalenaFleetBuildReturn | ||
{ | ||
public bool started { get; set; } | ||
public int releaseId { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace BalenaNebraUpdater.Objs | ||
{ | ||
public class Author | ||
{ | ||
public string name { get; set; } | ||
public string email { get; set; } | ||
public DateTime date { get; set; } | ||
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; } | ||
} | ||
|
||
public class Commit | ||
{ | ||
public Author author { get; set; } | ||
public Committer committer { get; set; } | ||
public string message { get; set; } | ||
public Tree tree { get; set; } | ||
public string url { get; set; } | ||
public int comment_count { get; set; } | ||
public Verification verification { get; set; } | ||
} | ||
|
||
public class Committer | ||
{ | ||
public string name { get; set; } | ||
public string email { get; set; } | ||
public DateTime date { get; set; } | ||
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; } | ||
} | ||
|
||
public class Parent | ||
{ | ||
public string sha { get; set; } | ||
public string url { get; set; } | ||
public string html_url { get; set; } | ||
} | ||
|
||
public class GithubCommits | ||
{ | ||
public string sha { get; set; } | ||
public string node_id { get; set; } | ||
public Commit commit { get; set; } | ||
public string url { get; set; } | ||
public string html_url { get; set; } | ||
public string comments_url { get; set; } | ||
public Author author { get; set; } | ||
public Committer committer { get; set; } | ||
public List<Parent> parents { get; set; } | ||
} | ||
|
||
public class Tree | ||
{ | ||
public string sha { get; set; } | ||
public string url { get; set; } | ||
} | ||
|
||
public class Verification | ||
{ | ||
public bool verified { get; set; } | ||
public string reason { get; set; } | ||
public string signature { get; set; } | ||
public string payload { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.