/* Options: Date: 2025-12-06 07:49:58 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: MallUpdateOtherServiceRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/mall/update_other_service", "POST") public class MallUpdateOtherServiceRequest : IReturn, IPost, IHasMallOtherServiceId, Codable { public typealias Return = MallUpdateOtherServiceResponse public var mallOtherServiceId:Int? public var floor:String? public var serviceName:String? required public init(){} } public class MallUpdateOtherServiceResponse : Codable { public var updated: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(){} }