using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace Tango.Touch.Keyboard { public class KeysLineDefinition { public List KeyDefinitions { get; set; } public List SpecialLeftKeyDefinitions { get; set; } public List SpecialRightKeyDefinitions { get; set; } public KeysLineDefinition() { KeyDefinitions = new List(); SpecialLeftKeyDefinitions = new List(); SpecialRightKeyDefinitions = new List(); } } }