' Options: 'Date: 2025-05-12 18:01:46 'Version: 8.53 '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: AllCollectionTypes.* '''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 Namespace Global Namespace Test.ServiceModel.Types Public Partial Class AllCollectionTypes Implements IReturn(Of AllCollectionTypes) Public Overridable Property IntArray As Integer() = New Integer(){} Public Overridable Property IntList As List(Of Integer) = New List(Of Integer) Public Overridable Property StringArray As String() = New String(){} Public Overridable Property StringList As List(Of String) = New List(Of String) Public Overridable Property FloatArray As Single() = New Single(){} Public Overridable Property DoubleList As List(Of Double) = New List(Of Double) Public Overridable Property ByteArray As Byte() = New Byte(){} Public Overridable Property CharArray As Char() = New Char(){} Public Overridable Property DecimalList As List(Of Decimal) = New List(Of Decimal) Public Overridable Property PocoArray As Poco() = New Poco(){} Public Overridable Property PocoList As List(Of Poco) = New List(Of Poco) Public Overridable Property PocoLookup As Dictionary(Of String, List(Of Poco)) = New Dictionary(Of String, List(Of Poco)) Public Overridable Property PocoLookupMap As Dictionary(Of String, List(Of Dictionary(Of String,Poco))) = New Dictionary(Of String, List(Of Dictionary(Of String,Poco))) End Class Public Partial Class Poco Public Overridable Property Name As String End Class End Namespace End Namespace