' Options: 'Date: 2025-12-06 07:06:15 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://backoffice-api.brovs.com ' '''GlobalNamespace: BackofficeApi '''MakePartial: True '''MakeVirtual: False '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: BusinessSearchRequest.* '''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 BackofficeApi Namespace Global Namespace BackofficeApi Public Partial Class BusinessDto Public Property Id As Long Public Property Name As String Public Property OrganizationNumber As String Public Property PostalAddress As String Public Property PostalCode As String Public Property City As String Public Property Country As String Public Property Contact As BusinessContact End Class Public Partial Class BusinessSearchRequest Implements IReturn(Of BusinessSearchResponse) Implements IGet Public Property Query As String Public Property Size As Integer? Public Property Offset As Integer? End Class Public Partial Class BusinessSearchResponse Public Property Businesses As List(Of BusinessDto) = New List(Of BusinessDto) Public Property Total As Long Public Property Size As Integer Public Property Offset As Integer End Class Public Partial Class BusinessContact Public Property FirstName As String Public Property LastName As String Public Property Position As String Public Property Phone As String Public Property Email As String End Class End Namespace End Namespace