' Options: 'Date: 2024-12-22 21:39:14 'Version: 8.51 '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: False '''ExportValueTypes: False 'IncludeTypes: DeleteJobApplication.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports MyApp.ServiceModel Namespace Global Namespace MyApp.ServiceModel Public Partial Class DeleteJobApplication Implements IReturnVoid Implements IDeleteDb(Of JobApplication) Public Overridable Property Id As Integer End Class Public Partial Class JobApplication Public Overridable Property Id As Integer Public Overridable Property JobId As Integer Public Overridable Property ContactId As Integer Public Overridable Property Position As Job Public Overridable Property Applicant As Contact Public Overridable Property Comments As List(Of JobApplicationComment) = New List(Of JobApplicationComment) Public Overridable Property AppliedDate As Date Public Overridable Property ApplicationStatus As JobApplicationStatus Public Overridable Property Attachments As List(Of JobApplicationAttachment) = New List(Of JobApplicationAttachment) Public Overridable Property Events As List(Of JobApplicationEvent) = New List(Of JobApplicationEvent) Public Overridable Property PhoneScreen As PhoneScreen Public Overridable Property Interview As Interview Public Overridable Property JobOffer As JobOffer End Class End Namespace End Namespace