mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-18 20:43:06 -05:00
Co-authored-by: Fesaa <77553571+Fesaa@users.noreply.github.com> Co-authored-by: GitHub Action <action@github.com>
15 lines
373 B
C#
15 lines
373 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.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; }
|
|
}
|