' Options: 'Date: 2026-01-12 02:42:19 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://qa-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: GetAdImagesRequest.* '''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 AdImageDto Public Property Id As Long Public Property AdId As Long Public Property Image As CloudBlob Public Property ImageUrls As ImageUrls Public Property Position As Integer End Class Public Partial Class GetAdImagesRequest Implements IReturn(Of GetAdImagesResponse) Implements IGet Implements IHasAdId Public Property AdId As Long Implements IHasAdId.AdId End Class Public Partial Class GetAdImagesResponse Public Property AdImages As List(Of AdImageDto) = New List(Of AdImageDto) End Class Public Interface IHasAdId Property AdId As Long End Interface Public Partial Class CloudBlob Public Property PublicUrl As String Public Property Key As String Public Property Environment As DeploymentSlot? Public Property Bucket As String Public Property IdentifyingSuffix As String Public Property MimeType As String End Class Public Enum DeploymentSlot Production Qa Unstable Test Local Docker End Enum Public Partial Class ImageUrls Public Property Preview As String Public Property Small As String Public Property Medium As String Public Property Large As String End Class End Namespace End Namespace