修改一版
This commit is contained in:
@@ -9,11 +9,11 @@ using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
///<summary>
|
||||
///DefaultShortcutKey
|
||||
///</summary>
|
||||
[Table("DefaultShortcutKey")]
|
||||
public class DefaultShortcutKey : Entity, IAuditAdd
|
||||
///<summary>
|
||||
///ShortcutKey
|
||||
///</summary>
|
||||
[Table("ShortcutKey")]
|
||||
public class ShortcutKey : Entity, IAuditAdd
|
||||
{
|
||||
/// <summary>
|
||||
/// 对应的键盘按键
|
||||
@@ -40,13 +40,17 @@ namespace IRaCIS.Core.Domain.Models
|
||||
/// </summary>
|
||||
public Guid CreateUserId { get; set; }
|
||||
|
||||
public bool AltKey { get; set; }
|
||||
public Guid UserId { get; set; }
|
||||
|
||||
public bool CtrlKey { get; set; }
|
||||
public bool AltKey { get; set; } = false;
|
||||
|
||||
public bool ShiftKey { get; set; }
|
||||
public bool CtrlKey { get; set; } = false;
|
||||
|
||||
public bool MetaKey { get; set; }
|
||||
public bool ShiftKey { get; set; } = false;
|
||||
|
||||
public bool MetaKey { get; set; } = false;
|
||||
|
||||
public string KeyboardShow { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user