export interface BookingRoomStatusOption {
  code: string;
  isLocked: boolean;
  isOnRequest: boolean;
}
