Files
2022-11-01 15:26:08 +00:00

12 lines
185 B
C#

using System;
namespace TheXamlGuy.Framework.Core
{
public interface IScope
{
IDisposable Enter<T>(object target);
bool IsActive<T>(object target);
}
}