/* Options: Date: 2026-06-01 15:18:40 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://remservices.eyyubiye.bel.tr //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RemoveRemAttachment.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class RemoveRemAttachmentResponse { public Result: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/RemoveRemAttachment/{ClientKey}") export class RemoveRemAttachment implements IReturn { public ClientKey: string; public AuthorizationID: string; public AttachmentID: number; public RemID: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'RemoveRemAttachment'; } public getMethod() { return 'POST'; } public createResponse() { return new RemoveRemAttachmentResponse(); } }