diff --git a/ModelsLib/RequestList.fs b/ModelsLib/RequestList.fs index d665074..25ee5b6 100644 --- a/ModelsLib/RequestList.fs +++ b/ModelsLib/RequestList.fs @@ -2,13 +2,10 @@ 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 +type RequestList() = + static member val userDetail = new User() + with get, set + static member val branchDetail = new ObservableCollection() + with get, set + static member val repoDetail = new ObservableCollection() + with get, set \ No newline at end of file