using System.Collections.Generic; namespace Kreta.Core.FeatureToggle { public interface IFeature { string Name { get; } bool IsEnabled { get; } IEnumerable InstituteIds { get; } IEnumerable Environments { get; } } }