using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using AIStudio.Wpf.DiagramDesigner; using AIStudio.Wpf.DiagramDesigner.Models; namespace AIStudio.Wpf.Block.ViewModels { public class KeyboardPressBlockItemViewModel : ControlBlockItemViewModel { public KeyboardPressBlockItemViewModel() { } public KeyboardPressBlockItemViewModel(IDiagramViewModel root) : base(root) { } public KeyboardPressBlockItemViewModel(IDiagramViewModel root, SelectableItemBase designer) : base(root, designer) { } public KeyboardPressBlockItemViewModel(IDiagramViewModel root, SerializableItem serializableItem, string serializableType) : base(root, serializableItem, serializableType) { } public List KeyItemsSource { get;set; } private string _key; public string Key { get { return _key; } set { SetProperty(ref _key, value); } } } }