You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
945 B
28 lines
945 B
Public Class clsUser
|
|
Public Class Link
|
|
Public Property rel As String
|
|
Public Property href As String
|
|
End Class
|
|
|
|
Public Class Root
|
|
Public Property id As String
|
|
Public Property version As Integer
|
|
Public Property username As String
|
|
Public Property email As String
|
|
Public Property firstName As String
|
|
Public Property lastName As String
|
|
Public Property organization As String
|
|
Public Property phone As String
|
|
Public Property status As String
|
|
Public Property externalId As String
|
|
Public Property gender As String
|
|
Public Property language As String
|
|
Public Property shortName As String
|
|
Public Property userType As String
|
|
Public Property roles As List(Of String)
|
|
Public Property deleted As Boolean
|
|
Public Property links As List(Of Link)
|
|
End Class
|
|
|
|
End Class
|