using Microsoft.Iris.Debug.Data;
using System;
namespace Microsoft.Iris.Debug;
public interface IDebuggerState
{
///
/// The URI the client is connected to.
///
public Uri ConnectionUri { get; }
InterpreterCommand DebuggerCommand { get; set; }
///
/// Fired when a connection is established.
///
public event Action Connected;
}