using System.Collections.Generic; using System.Drawing; namespace CUE.NET.Devices.Keyboard.Keys { public interface IKeyGroup { IEnumerable Keys { get; } Color Color { get; set; } } }