mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
21 lines
455 B
C#
21 lines
455 B
C#
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,
|
|
ManageAccountPage,
|
|
AgbPage,
|
|
WhatsNewPage,
|
|
BikesAtStation,
|
|
ContactPage
|
|
}
|
|
}
|