Files
laatzen/Common/ProductionUiCordonel/Model/IMultiModeChildViewModel.cs
T

13 lines
254 B
C#

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