/* Options: Date: 2026-09-01 21:28:32 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: HelloSecure.* //ExcludeTypes: //DefaultImports: */ package dtos import ( ss "github.com/ServiceStack/servicestack-go" ) type HelloResponse struct { Result string `json:"result"` ResponseStatus ss.ResponseStatus `json:"responseStatus"` } // @Route("/hellosecure/{Name}") // @ValidateRequest(Validator="IsAuthenticated") type HelloSecure struct { Name string `json:"name"` } func (HelloSecure) CreateResponse() (r HelloResponse) { return } func (HelloSecure) HttpMethod() string { return "GET" }