laatzen/Common/ProductionUiCordonel/Model/IMultiModeChildViewModel.cs
2023-01-23 13:18:54 +01:00

13 lines
254 B
C#

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