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