sharee.bike-App/TINKLib/ViewTypes.cs

24 lines
502 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
namespace TINK
{
/// <summary> Holds a entry for each page of the TINK app.</summary>
public enum ViewTypes
{
LoginPage,
MapPage,
RegisterPage,
PasswordForgottenPage,
BikeInfoCarouselPage,
MyBikesPage,
SettingsPage,
TabbedPageInfo,
FeesAndBikesPage,
2021-05-13 20:03:07 +02:00
ManageAccountPage,
AgbPage,
WhatsNewPage,
BikesAtStation,
ContactPage,
2021-08-01 17:24:15 +02:00
SelectStationPage,
MiniSurvey
2021-05-13 20:03:07 +02:00
}
}