11 lines
194 B
C#
11 lines
194 B
C#
namespace FlowScope
|
|
{
|
|
public interface IScopeInfo
|
|
{
|
|
string Name { get; }
|
|
IScopeInfo Parent { get; }
|
|
string Path { get; }
|
|
bool IsDisposed { get; }
|
|
}
|
|
}
|