/* Options: Date: 2025-12-06 07:02:48 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: GetAllBarTypeRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/bar_type/get_all", "GET") public class GetAllBarTypeRequest : IReturn, IGet, Codable { public typealias Return = GetAllBarTypeResponse required public init(){} } public class GetAllBarTypeResponse : Codable { public var barType:[BackofficeBarTypeDto] = [] required public init(){} } public class BackofficeBarTypeDto : Codable { public var title:String? public var slug:String? required public init(){} }