/* Options: Date: 2025-05-06 15:06:26 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EventSeatingSeatDeleteRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class EventSeatingSeatDeleteResult { public statusCode: number; public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/EventSeatingSeat/{Id}", "DELETE") export class EventSeatingSeatDeleteRequest implements IReturn { public id: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EventSeatingSeatDeleteRequest'; } public getMethod() { return 'DELETE'; } public createResponse() { return new EventSeatingSeatDeleteResult(); } }