abstract class AppRoutes {
static const splash = "/";
static const login = "/login";
static const forceLogin = "/login?forced=true";
static const overview = "/overview";
static const redeem = "/redeem";
static const webview = "/webview";
static const key = "/key";
static const pastCancelledBookings = "/past-cancelled-bookings";
static const bookingDetailsWithId = "/booking-details/:id";
static const bookingDetails = "/booking-details";
static const onboardingBluetooth = "/onboarding/bluetooth";
static const onboardingNotification = "/onboarding/notification";
static const onboardingUsageTracking = "/onboarding/usage-tracking";
static const receiveSharedBooking = "/share-room";
static const internetDisabled = "/internet-disabled";
static const bluetoothDisabled = "/bluetooth-disabled";
static const receivedSharedRoom = "/received-shared-room";
static const receivedSharedBooking = "/received-shared-booking";
static const checkOutSuccess = "/checkout-success";
static const paymentProcessing = "/payment-processing";
static const profile = "/profile";
static const profileSettings = "/profile-settings";
static const findBooking = "/find-booking";
static const loadingPage = "/loading-page";
static const changePassword = "/change-password";
static const checkIn = "/check-in";
static const checkInPayment = "/check-in-payment";
static const contact = "/contact";
static const preregistration = "/preregistration";
static const hotelInformation = "/hotel-information";
static const concierge = "/concierge";
static const facility = "/facility";
static const houseKeeping = "/house-keeping";
static const checkOut = "/check-out";
static const paymentCards = "/payment-cards";
static const shareBooking = "/share-booking";
static const notifications = "/notifications";
static const myBooking = "/my-booking";
static const upSalesCatalog = "/up-sales-catalog";
static const roomUpgrade = "/room-upgrade";
static const addonUpgrade = "/addon-upgrade";
static const servicesUpgrade = "/services-upgrade";
static const upSaleConfirmation = "/up-sale-confirmation";
static const upSalesProcessing = "/up-sales-processing";
static const chooseShareRoom = "/choose-share-room";
static const roomInfo = "/room-info";
static const shareRoom = "/send-share-room";
static const forceUpdate = "/force-update";
static const upSalesError = "/up-sales-error";
static const sharedBooking = "/shared-booking";
static const checkOutError = "/check-out-error";
static const permissionOverview = "/permission-overview";
}