using System.Collections.Generic; namespace Kreta.Core.FeatureToggle { public interface IFeatureContext { bool IsEnabled(string featureName, string environment = null, string instituteId = null, List instituteIds = null); } }