namespace ElectronNET.API.Entities
{
///
/// Options for .
///
public class FindInPageOptions
{
///
/// Whether to search forward or backward, defaults to true.
///
public bool? Forward { get; set; }
///
/// Whether to begin a new text finding session with this request. Should be true
/// for initial requests, and false for subsequent requests. Defaults to false.
///
public bool? FindNext { get; set; }
///
/// Whether search should be case-sensitive, defaults to false.
///
public bool? MatchCase { get; set; }
}
}