' Options: 'Date: 2025-12-06 06:29:43 '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: PlaceGetSelectedBrandsRequest.* '''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 BrandDto Public Property Id As Long Public Property DefinedByRootCategoryId As Long Public Property Name As String End Class Public Partial Class BrandWithCategoriesDto Inherits BrandDto Public Property Categories As List(Of CategoryDto) = New List(Of CategoryDto) End Class Public Partial Class CategoryDto Public Property Id As Long Public Property Slug As String Public Property AbsoluteSlug As String Public Property Name As String Public Property ParentId As Long? End Class Public Partial Class PlaceCustomBrandWithCategoriesDto Public Property Id As Long Public Property DefinedByPlaceId As Long Public Property Label As String Public Property Categories As List(Of CategoryDto) = New List(Of CategoryDto) End Class Public Partial Class PlaceGetSelectedBrandsRequest Implements IReturn(Of PlaceGetSelectedBrandsResponse) Implements IGet Implements IHasPlaceId Public Property PlaceId As Long Implements IHasPlaceId.PlaceId End Class Public Partial Class PlaceGetSelectedBrandsResponse Public Property BrandsWithCategories As List(Of BrandWithCategoriesDto) = New List(Of BrandWithCategoriesDto) Public Property CustomBrandsWithCategories As List(Of PlaceCustomBrandWithCategoriesDto) = New List(Of PlaceCustomBrandWithCategoriesDto) End Class Public Interface IHasPlaceId Property PlaceId As Long End Interface End Namespace End Namespace