using OpenTap;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace OpenTapEditor.Plugin
|
{
|
public class UIStepMonitor : IResource
|
{
|
public UIStepMonitor()
|
{
|
|
}
|
|
public string Name { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
|
|
public bool IsConnected => throw new NotImplementedException();
|
|
public event PropertyChangedEventHandler? PropertyChanged;
|
|
public void Close()
|
{
|
throw new NotImplementedException();
|
}
|
|
public void Open()
|
{
|
throw new NotImplementedException();
|
}
|
}
|
}
|