DeskHubSharpRevised/ModelsLib/RequestList.fs

14 lines
566 B
Forth
Raw Normal View History

2022-07-01 22:01:46 -05:00
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<Branch> = null
and set(value: ObservableCollection<Branch>) = RequestList.branchDetail <- value
static member repoDetail
with get(): ObservableCollection<RepoDetail> = null
and set(value: ObservableCollection<RepoDetail>) = RequestList.repoDetail <- value