/* Options: Date: 2025-04-04 18:07:25 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FileAttachmentService.DeleteFileRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } // @Route("/api/FileAttachment/DeleteFile", "POST,GET") export class DeleteFileRequest implements IReturnVoid { public FileAttachmentId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'FileAttachmentService.DeleteFileRequest'; } public getMethod() { return 'POST'; } public createResponse() {} }