13 lines
260 B
C#
13 lines
260 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace ProductionUiCordonelLegacy.Model
|
|
{
|
|
public interface IMultiModeChildViewModel : INotifyPropertyChanged, IDisposable
|
|
{
|
|
String GetChildIdent();
|
|
|
|
void InputText(String text);
|
|
}
|
|
}
|