added models

This commit is contained in:
2022-06-29 13:03:02 -04:00
parent 0331399b36
commit bd53cb400b
9 changed files with 628 additions and 8 deletions

View File

@@ -2,5 +2,13 @@ namespace DeskHubSharpRevised.Models;
public class Branch
{
public string name { get; set; }
public Commit commit { get; set; }
public class Commit
{
public string sha { get; set; }
public string url { get; set; }
}
}