Skip to content

Instantly share code, notes, and snippets.

@timsavery
Last active August 29, 2015 14:12
Show Gist options
  • Save timsavery/91aead7d3cdd71eb1b03 to your computer and use it in GitHub Desktop.
Save timsavery/91aead7d3cdd71eb1b03 to your computer and use it in GitHub Desktop.
namespace FeatureToggle.Core
{
public interface IFeatureToggle
{
bool FeatureEnabled { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment