From c2270f23d1039e5d179ee419929474cfe2ebdfed Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Fri, 1 Jul 2022 23:01:46 -0400 Subject: [PATCH] added requestlist model --- ModelsLib/RequestList.fs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ModelsLib/RequestList.fs diff --git a/ModelsLib/RequestList.fs b/ModelsLib/RequestList.fs new file mode 100644 index 0000000..d665074 --- /dev/null +++ b/ModelsLib/RequestList.fs @@ -0,0 +1,14 @@ +namespace DeskHubSharpRevised.Models + +open System.Collections.ObjectModel + +type RequestList = + static member userDetail + with get(): obj = null + and set(value) = RequestList.userDetail <- value + static member branchDetail + with get(): ObservableCollection = null + and set(value: ObservableCollection) = RequestList.branchDetail <- value + static member repoDetail + with get(): ObservableCollection = null + and set(value: ObservableCollection) = RequestList.repoDetail <- value \ No newline at end of file