mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 22:47:15 +01:00
7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
export enum BOOKING_STATUS {
|
|
REQUESTED = 'requested',
|
|
CONFIRMED = 'confirmed',
|
|
REJECTED = 'rejected',
|
|
CANCELED = 'canceled',
|
|
}
|