namespace Connected.Services
{
public class ResizeObserverOptions
{
///
/// Timepsan in milliseconds after the browser detect the last chance and notify the interop service.
/// Setting this value too low can cause poor application performance.
///
public int ReportRate { get; set; } = 200;
///
/// Report resize events in the browser's console.
///
public bool EnableLogging { get; set; } = false;
}
}