namespace ConfusedPolarBear.Plugin.IntroSkipper.Configuration;
///
/// User interface configuration.
///
public class UserInterfaceConfiguration
{
///
/// Initializes a new instance of the class.
///
/// Skip button visibility.
/// Skip button text.
public UserInterfaceConfiguration(bool visible, string text)
{
SkipButtonVisible = visible;
SkipButtonText = text;
}
///
/// 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.
///
public string SkipButtonText { get; set; }
}