/* Options: Date: 2025-12-06 07:50:19 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: MallRemoveOtherServiceRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/mall/remove_other_service", "DELETE") public class MallRemoveOtherServiceRequest : IReturn, IDelete, IHasMallOtherServiceId, Codable { public typealias Return = MallRemoveOtherServiceResponse public var mallOtherServiceId:Int? required public init(){} } public class MallRemoveOtherServiceResponse : Codable { public var deleted:MallOtherServiceDto? required public init(){} } public protocol IHasMallOtherServiceId { var mallOtherServiceId:Int? { get set } } public class MallOtherServiceDto : Codable { public var id:Int? public var serviceName:String? public var floor:String? required public init(){} }