sharee.bike-App/SharedBusinessLogic/ViewTypes.cs
2024-04-09 12:53:23 +02:00

24 lines
395 B
C#

namespace ShareeBike
{
/// <summary> Holds a entry for each page of the ShareeBike app.</summary>
public enum ViewTypes
{
LoginPage,
MapPage,
RegisterPage,
PasswordForgottenPage,
MyBikesPage,
SettingsPage,
LegalInformationPage,
HelpPage,
ManageAccountPage,
GtcPage,
WhatsNewPage,
BikesAtStation,
ContactPage,
SelectStationPage,
MiniSurvey,
SelectBikePage
}
}