/* Options: Date: 2025-06-13 06:34:41 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UnShareReportRQ.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UnShareReportRS { public isUnShared: boolean; public error: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/restfiles/UnShareReportRQ") export class UnShareReportRQ implements IReturn { public reporte: number; public usuario: string; public sistema: number; public empresa: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UnShareReportRQ'; } public getMethod() { return 'POST'; } public createResponse() { return new UnShareReportRS(); } }