' Options: 'Date: 2025-08-18 06:08:08 'Version: 8.81 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://test.servicestack.net ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: TestUploadWithDto.* '''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 Test.ServiceModel.Types Imports Test.ServiceModel Namespace Global Namespace Test.ServiceModel Public Partial Class TestUploadWithDto Implements IReturn(Of TestUploadWithDto) Implements IPost Public Overridable Property Int As Integer Public Overridable Property NullableId As Integer? Public Overridable Property [Long] As Long Public Overridable Property [Double] As Double Public Overridable Property [String] As String Public Overridable Property DateTime As Date Public Overridable Property IntArray As Integer() Public Overridable Property IntList As List(Of Integer) Public Overridable Property StringArray As String() Public Overridable Property StringList As List(Of String) Public Overridable Property PocoArray As Poco() Public Overridable Property PocoList As List(Of Poco) Public Overridable Property NullableByteArray As Byte?() Public Overridable Property NullableByteList As List(Of Nullable(Of Byte)) Public Overridable Property NullableDateTimeArray As Date?() Public Overridable Property NullableDateTimeList As List(Of Nullable(Of DateTime)) Public Overridable Property PocoLookup As Dictionary(Of String, List(Of Poco)) Public Overridable Property PocoLookupMap As Dictionary(Of String, List(Of Dictionary(Of String,Poco))) Public Overridable Property MapList As Dictionary(Of String, List(Of String)) End Class End Namespace Namespace Test.ServiceModel.Types Public Partial Class Poco Public Overridable Property Name As String End Class End Namespace End Namespace