namespace MediaBrowser.Controller.Drawing
{
///
/// Options used to generate the splashscreen.
///
public class SplashscreenOptions
{
///
/// Initializes a new instance of the class.
///
/// The output path.
/// Optional. Apply a darkening filter.
public SplashscreenOptions(string outputPath, bool applyFilter = false)
{
OutputPath = outputPath;
ApplyFilter = applyFilter;
}
///
/// Gets or sets the output path.
///
public string OutputPath { get; set; }
///
/// Gets or sets a value indicating whether to apply a darkening filter at the end.
///
public bool ApplyFilter { get; set; }
}
}