/* Options: Date: 2025-05-06 15:59:47 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: Hello.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/hello/{Name}", "GET POST") // @Route("/hello", "GET POST") public class Hello : IReturn, Codable { public typealias Return = HelloResponse public var name:String? public var isWoman:Bool? public var age:Int? required public init(){} } public class HelloResponse : Codable { public var result:String? required public init(){} }