using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RaspiControl { public class JoystickEventArgs : EventArgs { public JoystickButton Button { get; } public JoystickEventArgs(JoystickButton button) { Button = button; } } }