sharee.bike-App/TINKLib/ViewTypes.cs

24 lines
383 B
C#
Raw Normal View History

2022-10-17 18:45:38 +02:00
namespace TINK
2021-05-13 20:03:07 +02:00
{
2022-09-06 16:08:19 +02:00
/// <summary> Holds a entry for each page of the TINK app.</summary>
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
}