using Avalonia.Metadata; namespace Avalonia.Input; /// /// Represents an event associated with a set of . /// [NotClientImplementable] public interface IKeyModifiersEventArgs { /// /// Gets the key modifiers associated with this event. /// KeyModifiers KeyModifiers { get; } }