' Options: 'Date: 2024-06-18 22:11:03 'Version: 8.23 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://blazor-gallery.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: QueryChinookEmployees.* '''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 Chinook.ServiceModel.Types Imports Chinook.ServiceModel Namespace Global Namespace Chinook.ServiceModel Public Partial Class QueryChinookEmployees Inherits QueryDb(Of Employees) Implements IReturn(Of QueryResponse(Of Employees)) Implements IGet Public Overridable Property EmployeeId As Nullable(Of Long) End Class End Namespace Namespace Chinook.ServiceModel.Types Public Partial Class Employees Public Overridable Property EmployeeId As Long Public Overridable Property LastName As String Public Overridable Property FirstName As String Public Overridable Property Title As String Public Overridable Property ReportsTo As Nullable(Of Long) Public Overridable Property BirthDate As Nullable(Of Date) Public Overridable Property HireDate As Nullable(Of Date) Public Overridable Property Address As String Public Overridable Property City As String Public Overridable Property State As String Public Overridable Property Country As String Public Overridable Property PostalCode As String Public Overridable Property Phone As String Public Overridable Property Fax As String Public Overridable Property Email As String End Class End Namespace End Namespace