/* Options: Date: 2026-08-17 08:24:00 SwiftVersion: 5.0 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: WebshopDroppLocationsRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/Webshop/Dropp/Locations", "GET") public class WebshopDroppLocationsRequest : IReturn, Codable { public typealias Return = WebshopDroppLocationsResult required public init(){} } public class WebshopDroppLocationsResult : Codable { public var locations:String? public var statusCode:Int? public var message:String? required public init(){} }