laatzen/Common/ProductionUiCordonel/Model/IMultiModeChildViewModel.cs

13 lines
260 B
C#

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