Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

15 lines
383 B
C#

using System.Collections.Generic;
namespace Kavita.Models.Entities.Enums.UserPreferences;
#nullable enable
public sealed record KeyBind
{
public string Key { get; set; }
public bool Control { get; set; }
public bool Shift { get; set; }
public bool Meta { get; set; }
public bool Alt { get; set; }
public IList<string>? ControllerSequence { get; set; }
}