mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 12:35:48 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
15 lines
383 B
C#
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; }
|
|
}
|