common/ProductionUiCordonel/Model/IMultiModeChildViewModel.cs
2026-04-23 17:50:07 +02:00

13 lines
260 B
C#

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