namespace TINK.Model.Settings { /// Settings determining the startup behavior of the app. public interface IStartupSettings { /// Holds the page to show when apps starts. ViewTypes StartupPage { get; set; } } }