' Options: 'Date: 2024-05-14 11:37:33 '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: QueryOrders.* '''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 QueryOrders Inherits QueryDb(Of Order) Implements IReturn(Of QueryResponse(Of Order)) Public Overridable Property Freight As Nullable(Of Decimal) End Class End Namespace Namespace Northwind.ServiceModel.Types Public Partial Class Order Public Overridable Property Id As Integer Public Overridable Property CustomerId As String Public Overridable Property EmployeeId As Integer Public Overridable Property OrderDate As Nullable(Of Date) Public Overridable Property RequiredDate As Nullable(Of Date) Public Overridable Property ShippedDate As Nullable(Of Date) Public Overridable Property ShipVia As Nullable(Of Integer) Public Overridable Property Freight As Decimal Public Overridable Property ShipName As String Public Overridable Property ShipAddress As String Public Overridable Property ShipCity As String Public Overridable Property ShipRegion As String Public Overridable Property ShipPostalCode As String Public Overridable Property ShipCountry As String End Class End Namespace End Namespace