/* Options: Date: 2025-04-19 13:58:13 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sharpscript.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EvaluateLinq.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/linq/eval") export class EvaluateLinq implements IReturn { public code: string; public lang: string; public files: { [index:string]: string; } = {}; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EvaluateLinq'; } public getMethod() { return 'POST'; } public createResponse() { return ''; } }