' Options: 'Date: 2024-05-11 11:53:43 'Version: 6.111 '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: True '''ExportValueTypes: False 'IncludeTypes: AllCollectionTypes.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.IO Imports Test.ServiceModel.Types Namespace Global Namespace Test.ServiceModel.Types Public Partial Class AllCollectionTypes Implements IReturn(Of AllCollectionTypes) Public Sub New() IntArray = New Integer(){} IntList = New List(Of Integer) StringArray = New String(){} StringList = New List(Of String) FloatArray = New Single(){} DoubleList = New List(Of Double) ByteArray = New Byte(){} CharArray = New Char(){} DecimalList = New List(Of Decimal) PocoArray = New Poco(){} PocoList = New List(Of Poco) PocoLookup = New Dictionary(Of String, List(Of Poco)) PocoLookupMap = New Dictionary(Of String, List(Of Dictionary(Of String,Poco))) End Sub 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 FloatArray As Single() Public Overridable Property DoubleList As List(Of Double) Public Overridable Property ByteArray As Byte() Public Overridable Property CharArray As Char() Public Overridable Property DecimalList As List(Of Decimal) Public Overridable Property PocoArray As Poco() Public Overridable Property PocoList As List(Of Poco) 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))) End Class Public Partial Class Poco Public Overridable Property Name As String End Class End Namespace End Namespace