sharee.bike-App/TINKLib/ViewTypes.cs

25 lines
407 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,
BikeInfoCarouselPage,
MyBikesPage,
SettingsPage,
TabbedPageInfo,
FeesAndBikesPage,
ManageAccountPage,
AgbPage,
WhatsNewPage,
BikesAtStation,
ContactPage,
SelectStationPage,
2022-10-17 18:45:38 +02:00
MiniSurvey,
FindBikePage
2022-09-06 16:08:19 +02:00
}
2021-05-13 20:03:07 +02:00
}