/* Options: Date: 2025-07-04 07:50:50 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetViewsAndExplorers.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/Navigation/ViewsAndExplorers", "GET") // @Route("/Navigation/ViewsAndExplorers/{FlattenHierarchy}", "GET") export class GetViewsAndExplorers implements IReturn { public FlattenHierarchy: boolean; public ProgCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetViewsAndExplorers'; } public getMethod() { return 'GET'; } public createResponse() { return new GetViewsAndExplorers(); } }