' Options: 'Date: 2024-05-16 23:21:15 '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: EchoCollections.* '''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.ServiceInterface Namespace Global Namespace Test.ServiceInterface Public Partial Class EchoCollections Implements IReturn(Of EchoCollections) Public Sub New() StringList = New List(Of String) StringArray = New String(){} StringMap = New Dictionary(Of String, String) IntStringMap = New Dictionary(Of Integer, String) End Sub Public Overridable Property StringList As List(Of String) Public Overridable Property StringArray As String() Public Overridable Property StringMap As Dictionary(Of String, String) Public Overridable Property IntStringMap As Dictionary(Of Integer, String) End Class End Namespace End Namespace