/* Options: Date: 2025-12-06 07:49: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: PlaceAddCategoryRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/place/add_category", "POST") public class PlaceAddCategoryRequest : IReturn, IPost, IHasPlaceId, Codable { public typealias Return = PlaceAddCategoryResponse public var placeId:Int? public var categoryAbsoluteSlug:String? required public init(){} } public class PlaceAddCategoryResponse : Codable { public var addedCategoryPlaceId:Int? public var parentCategoriesAddedCount:Int? required public init(){} } public protocol IHasPlaceId { var placeId:Int? { get set } }