' Options: 'Date: 2025-12-06 08:02:15 '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: UpdateMyStaffRolesRequest.* '''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 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 Partial Class UpdateMyStaffRoleDto Public Property BusinessId As Long? Public Property PlaceId As Long? Public Property Role As StaffRole Public Property BusinessRole As BusinessRole Public Property Delete As Boolean End Class Public Partial Class UpdateMyStaffRolesRequest Implements IReturn(Of UpdateMyStaffRolesResponse) Implements IPost Public Property staff As List(Of UpdateMyStaffRoleDto) = New List(Of UpdateMyStaffRoleDto) End Class Public Partial Class UpdateMyStaffRolesResponse Public Property Staff As List(Of StaffDto) = New List(Of StaffDto) End Class Public Enum StaffRole Owner Admin Regular End Enum Public Enum BusinessRole Owner Manager Sales Marketing Other End Enum End Namespace End Namespace