sharee.bike-App/SharedBusinessLogic/Model/Settings/StartupSettings.cs

12 lines
378 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
namespace ShareeBike.Model.Settings
2022-10-17 18:45:38 +02:00
{
/// <summary> Settings determining the startup behavior of the app. </summary>
public class StartupSettings : IStartupSettings
{
public static ViewTypes DefaultStartupPage => ViewTypes.MapPage;
/// <summary> Holds the page to show when apps starts. </summary>
public ViewTypes StartupPage { get; set; } = DefaultStartupPage;
}
}