/* Options: Date: 2025-11-23 04:36:02 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateCompanyCategory.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class CompanyCategoryQueryResponse { public Id: number; public Name: string; public Active: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/categories", "POST") export class CreateCompanyCategory implements IReturn { /** @description Name of the category */ // @ApiMember(Description="Name of the category", IsRequired=true) public Name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'CreateCompanyCategory'; } public getMethod() { return 'POST'; } public createResponse() { return new CompanyCategoryQueryResponse(); } }