' Options: 'Date: 2024-05-10 06:12:00 'Version: 6.111 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://northwind.netcore.io ' '''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: QueryCustomers.* '''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 Northwind.ServiceModel.Types Imports Northwind.ServiceModel Namespace Global Namespace Northwind.ServiceModel Public Partial Class QueryCustomers Inherits QueryDb(Of Customer) Implements IReturn(Of QueryResponse(Of Customer)) Public Overridable Property Ids As List(Of String) Public Overridable Property CountryStartsWith As String End Class End Namespace Namespace Northwind.ServiceModel.Types Public Partial Class Customer Public Overridable Property Id As String Public Overridable Property CompanyName As String Public Overridable Property ContactName As String Public Overridable Property ContactTitle As String Public Overridable Property Address As String Public Overridable Property City As String Public Overridable Property Region As String Public Overridable Property PostalCode As String Public Overridable Property Country As String Public Overridable Property Phone As String Public Overridable Property Fax As String End Class End Namespace End Namespace