' Options: 'Date: 2025-12-06 07:01:20 '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: GetCategoryTreeRequest.* '''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 BackofficeCategoryTreeDto Public Property Id As Long Public Property Slug As String Public Property AbsoluteSlug As String Public Property Name As String Public Property ImageUrl As String Public Property AllImageUrl As String Public Property DefaultPlaceImageUrl As String Public Property Children As List(Of BackofficeCategoryTreeDto) = New List(Of BackofficeCategoryTreeDto) Public Property FeatureTypes As List(Of FeatureTypeDto) = New List(Of FeatureTypeDto) End Class Public Partial Class FeatureTypeDto Public Property Slug As FeatureType Public Property Label As String End Class Public Partial Class GetCategoryTreeRequest Implements IReturn(Of GetCategoryTreeResponse) Implements IGet Public Property AbsoluteSlug As String End Class Public Partial Class GetCategoryTreeResponse Public Property Tree As List(Of BackofficeCategoryTreeDto) = New List(Of BackofficeCategoryTreeDto) End Class Public Enum FeatureType BarSpeciality BarType Cuisine SaveFoodAndMoney MealType Menu OutdoorSeating Parking PaymentOptions PriceMainDish SubCategories SubCategoriesAndBrands EatingSuitabilities TakeAway WearPriceProfile WheelChairAccessible Wifi WebShop Filtering End Enum End Namespace End Namespace