/* Options: Date: 2025-11-23 04:37:02 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: CreateCompanyCategory.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/categories", "POST") public class CreateCompanyCategory : IReturn, Codable { public typealias Return = CompanyCategoryQueryResponse /** * Name of the category */ // @ApiMember(Description="Name of the category", IsRequired=true) public var name:String? required public init(){} } public class CompanyCategoryQueryResponse : Codable { public var id:Int? public var name:String? public var active:Bool? required public init(){} }