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