updated requestlist model
This commit is contained in:
		@@ -2,13 +2,10 @@ namespace DeskHubSharpRevised.Models
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
open System.Collections.ObjectModel
 | 
					open System.Collections.ObjectModel
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type RequestList =
 | 
					type RequestList() =
 | 
				
			||||||
    static member userDetail
 | 
					    static member val userDetail = new User()
 | 
				
			||||||
        with get(): obj = null
 | 
					        with get, set
 | 
				
			||||||
        and set(value) = RequestList.userDetail <- value
 | 
					    static member val branchDetail = new ObservableCollection<Branch>()
 | 
				
			||||||
    static member branchDetail
 | 
					        with get, set
 | 
				
			||||||
        with get(): ObservableCollection<Branch> = null
 | 
					    static member val repoDetail = new ObservableCollection<RepoDetail>()
 | 
				
			||||||
        and set(value: ObservableCollection<Branch>) = RequestList.branchDetail <- value
 | 
					        with get, set
 | 
				
			||||||
    static member repoDetail
 | 
					 | 
				
			||||||
        with get(): ObservableCollection<RepoDetail> = null
 | 
					 | 
				
			||||||
        and set(value: ObservableCollection<RepoDetail>) = RequestList.repoDetail <- value
 | 
					 | 
				
			||||||
		Reference in New Issue
	
	Block a user