' Options: 'Date: 2025-12-06 08:03:17 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://business-api.brovs.com ' '''GlobalNamespace: BusinessApi '''MakePartial: True '''MakeVirtual: False '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: GetMyStaffRolesRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports BusinessApi Namespace Global Namespace BusinessApi Public Partial Class GetMyStaffRolesRequest Implements IReturn(Of GetMyStaffRolesResponse) Implements IGet End Class Public Partial Class GetMyStaffRolesResponse Public Property Staff As List(Of StaffDto) = New List(Of StaffDto) End Class Public Partial Class StaffDto Public Property Id As Long Public Property FirstName As String Public Property LastName As String Public Property Email As String Public Property Role As StaffRole Public Property PlaceId As Long? Public Property BusinessId As Long? Public Property UserId As Long Public Property PlaceName As String Public Property BusinessName As String Public Property MobileNumber As String Public Property BusinessRole As BusinessRole Public Property LastActiveOn As DateTimeOffset End Class Public Enum StaffRole Owner Admin Regular End Enum Public Enum BusinessRole Owner Manager Sales Marketing Other End Enum End Namespace End Namespace