/* Options: Date: 2025-12-06 07:50:17 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: PlaceRemoveBrandRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/place/remove_brand", "DELETE") public class PlaceRemoveBrandRequest : IReturn, IDelete, IHasPlaceId, Codable { public typealias Return = PlaceRemoveBrandResponse public var placeId:Int? public var brandId:Int? public var placeCustomBrandId:Int? public var categoryId:Int? required public init(){} } public class PlaceRemoveBrandResponse : Codable { public var brandId:Int? public var placeCustomBrandId:Int? public var categoryId:Int? required public init(){} } public protocol IHasPlaceId { var placeId:Int? { get set } }