/* Options: Date: 2025-12-06 06:26:11 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: MallAddOtherServiceRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/mall/add_other_service", "POST") public class MallAddOtherServiceRequest : IReturn, IPost, IHasMallId, Codable { public typealias Return = MallAddOtherServiceResponse public var mallId:Int? public var floor:String? public var serviceName:String? required public init(){} } public class MallAddOtherServiceResponse : Codable { public var added: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(){} }