diff --git a/ModelsLib/Branch.fs b/ModelsLib/Branch.fs new file mode 100644 index 0000000..d2f5695 --- /dev/null +++ b/ModelsLib/Branch.fs @@ -0,0 +1,9 @@ +namespace DeskHubSharpRevised.Models + +type Branch() = + member this.name: string = null + member this.commit with get(): obj = null + + type Commit() = + member this.sha with get(): string = null + member this.url with get(): string = null \ No newline at end of file