15 lines
283 B
C#
15 lines
283 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Kreta.Core.FeatureToggle
|
|
{
|
|
public interface IFeature
|
|
{
|
|
string Name { get; }
|
|
|
|
bool IsEnabled { get; }
|
|
|
|
IEnumerable<string> InstituteIds { get; }
|
|
|
|
IEnumerable<string> Environments { get; }
|
|
}
|
|
}
|