mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-21 01:59:49 +00:00
721ee8e494
* Move shared code to Shared project * Move from Realm to Squealify * Rename Daybreak.Shared namespaces * Setup API project to expose a test API
11 lines
216 B
C#
11 lines
216 B
C#
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Daybreak.Shared.Models;
|
|
|
|
public sealed class KeyMacro
|
|
{
|
|
public List<Keys>? Keys { get; set; }
|
|
public Keys TargetKey { get; set; }
|
|
}
|