/* Options: Date: 2025-12-23 15:11:47 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://vue-spa.web-templates.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteBooking.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturnVoid { createResponse(): void; } export interface IDeleteDb { } /** @description Booking Details */ export class Booking extends AuditBase { public id: number; public name: string; public roomType: RoomType; public roomNumber: number; public bookingStartDate: string; public bookingEndDate?: string; public cost: number; public notes?: string; public cancelled?: boolean; public employee: User; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @ValidateRequest(Validator="HasRole(`Manager`)") // @ValidateRequest(Validator="HasRole(`Employee`)") export class DeleteBooking implements IReturnVoid, IDeleteDb { public id?: number; public ids?: number[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteBooking'; } public getMethod() { return 'DELETE'; } public createResponse() {} }