/* Options: Date: 2025-12-06 08:03:56 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: MallGetOtherServicesRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/mall/other-services", "GET") public class MallGetOtherServicesRequest : IReturn, IGet, IHasMallId, Codable { public typealias Return = MallGetOtherServicesResponse public var mallId:Int? required public init(){} } public class MallGetOtherServicesResponse : Codable { public var otherServices:[MallOtherServiceDto] = [] required public init(){} } public protocol IHasMallId { var mallId:Int? { get set } } public class MallOtherServiceDto : Codable { public var id:Int? public var serviceName:String? public var floor:String? required public init(){} }