2024-04-09 12:53:23 +02:00
|
|
|
namespace ShareeBike
|
2021-05-13 20:03:07 +02:00
|
|
|
{
|
2024-04-09 12:53:23 +02:00
|
|
|
/// <summary> Holds a entry for each page of the ShareeBike app.</summary>
|
2022-09-06 16:08:19 +02:00
|
|
|
public enum ViewTypes
|
|
|
|
{
|
|
|
|
LoginPage,
|
|
|
|
MapPage,
|
|
|
|
RegisterPage,
|
|
|
|
PasswordForgottenPage,
|
|
|
|
MyBikesPage,
|
|
|
|
SettingsPage,
|
2023-11-21 15:26:57 +01:00
|
|
|
LegalInformationPage,
|
|
|
|
HelpPage,
|
2022-09-06 16:08:19 +02:00
|
|
|
ManageAccountPage,
|
2023-11-21 15:26:57 +01:00
|
|
|
GtcPage,
|
2022-09-06 16:08:19 +02:00
|
|
|
WhatsNewPage,
|
|
|
|
BikesAtStation,
|
|
|
|
ContactPage,
|
|
|
|
SelectStationPage,
|
2022-10-17 18:45:38 +02:00
|
|
|
MiniSurvey,
|
2023-11-21 15:26:57 +01:00
|
|
|
SelectBikePage
|
2022-09-06 16:08:19 +02:00
|
|
|
}
|
2021-05-13 20:03:07 +02:00
|
|
|
}
|