using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Controls; using static GummingCommon.AppEnum; namespace GummingCommon { public interface IDraggableBase { PrintControlType ControlType { get; set; } /// /// ControlField /// string ControlField { get; set; } /// /// ControlFormat /// string ControlFormat { get; set; } TextBlock TextArea { get; set; } } }