From dc34b7eccd23651ffc91652cda43fb834269b3b2 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Fri, 1 Jul 2022 23:01:08 -0400 Subject: [PATCH] added branch model --- ModelsLib/Branch.fs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ModelsLib/Branch.fs 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