// Copyright (c) MudBlazor 2021 // MudBlazor licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; namespace Connected.Services { public class JsEventOptions { /// /// Class of the target node which should be observed for keyboard events /// /// Note: this must be a single class /// public string TargetClass { get; set; } /// /// The tag name of the element to register events with. Must be all uppercase, like "INPUT" /// public string TagName { get; set; } /// /// Report resize events in the browser's console. /// public bool EnableLogging { get; set; } = false; } }