Handling messages
// reserve-room.ts
import { Command } from '@node-ts/bus-messages'
export class ReserveRoom extends Command {
$name = 'reservations/reserve-room'
$version = 0
constructor (
readonly roomId: string,
readonly bookingId: string
) {
super()
}
}Last updated