using System; using System.ComponentModel; namespace ProductionUiCordonelLegacy.Model { public interface IMultiModeChildViewModel : INotifyPropertyChanged, IDisposable { String GetChildIdent(); void InputText(String text); } }