namespace TINK.Model.Settings
{
/// Settings determining the startup behavior of the app.
public class StartupSettings : IStartupSettings
{
public static ViewTypes DefaultStartupPage => ViewTypes.MapPage;
/// Holds the page to show when apps starts.
public ViewTypes StartupPage { get; set; } = DefaultStartupPage;
}
}