/* Options: Date: 2025-12-06 07:05:12 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: LookupBrandsNotSelectedForEditingInBackofficeRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/brand/not_selected_for_editing", "GET") public class LookupBrandsNotSelectedForEditingInBackofficeRequest : IReturn, IGet, Codable { public typealias Return = LookupBrandsNotSelectedForEditingInBackofficeResponse public var query:String? public var size:Int? public var offset:Int? required public init(){} } public class LookupBrandsNotSelectedForEditingInBackofficeResponse : Codable { public var brands:[BackofficeBrandDto] = [] required public init(){} } public class BackofficeBrandDto : Codable { public var id:Int? public var definedByRootCategoryId:Int? public var name:String? public var selectedForEditingInBackoffice:Bool? required public init(){} }