/* Options: Date: 2026-09-01 21:27:38 Version: 10.09 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteJobApplicationComment.* //ExcludeTypes: //DefaultImports: */ package dtos import ( ss "github.com/ServiceStack/servicestack-go" ) type JobApplicationComment struct { ss.AuditBase Id int `json:"id,omitempty"` // @References("typeof(MyApp.ServiceModel.AppUser)") AppUserId string `json:"appUserId"` AppUser AppUser `json:"appUser"` // @References("typeof(MyApp.ServiceModel.JobApplication)") JobApplicationId int `json:"jobApplicationId,omitempty"` Comment string `json:"comment"` } // @ValidateRequest(Validator="IsAuthenticated") type DeleteJobApplicationComment struct { Id int `json:"id,omitempty"` } func (DeleteJobApplicationComment) CreateResponseVoid() {} func (DeleteJobApplicationComment) HttpMethod() string { return "DELETE" }