namespace Ryujinx.Common.Configuration.Hid
{
    public class RightJoyconCommonConfig<Button>
    {
        public Button ButtonPlus { get; set; }
        public Button ButtonR { get; set; }
        public Button ButtonZr { get; set; }
        public Button ButtonSl { get; set; }
        public Button ButtonSr { get; set; }
        public Button ButtonX { get; set; }
        public Button ButtonB { get; set; }
        public Button ButtonY { get; set; }
        public Button ButtonA { get; set; }
    }
}