8 lines
153 B
C#
8 lines
153 B
C#
|
|
namespace Umbraco.Cms.Infrastructure.Scoping;
|
||
|
|
|
||
|
|
internal interface IAmbientScopeStack : IScopeAccessor
|
||
|
|
{
|
||
|
|
IScope Pop();
|
||
|
|
void Push(IScope scope);
|
||
|
|
}
|