/* Options: Date: 2025-12-06 06:41:37 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: PlaceOwnerEmailGetRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/place/get_owner_email", "GET") public class PlaceOwnerEmailGetRequest : IReturn, IGet, Codable { public typealias Return = PlaceOwnerEmailGetResponse public var placeId:Int? required public init(){} } public class PlaceOwnerEmailGetResponse : Codable { public var email:String? required public init(){} }