namespace ConfusedPolarBear.Plugin.IntroSkipper.Configuration; /// /// User interface configuration. /// public class UserInterfaceConfiguration { /// /// Initializes a new instance of the class. /// /// Skip button visibility. /// Skip button intro text. /// Skip button end credits text. public UserInterfaceConfiguration(bool visible, string introText, string creditsText) { SkipButtonVisible = visible; SkipButtonIntroText = introText; SkipButtonEndCreditsText = creditsText; } /// /// Gets or sets a value indicating whether to show the skip intro button. /// public bool SkipButtonVisible { get; set; } /// /// Gets or sets the text to display in the skip intro button in introduction mode. /// public string SkipButtonIntroText { get; set; } /// /// Gets or sets the text to display in the skip intro button in end credits mode. /// public string SkipButtonEndCreditsText { get; set; } }