9 lines
258 B
C#
9 lines
258 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Core.FeatureToggle
|
|
{
|
|
public interface IFeatureContext
|
|
{
|
|
bool IsEnabled(string featureName, string environment = null, string instituteId = null, List<string> instituteIds = null);
|
|
}
|
|
}
|