Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created January 18, 2020 16:16
Show Gist options
  • Save kasunkv/a82b502621853ac725698cef115a7f1e to your computer and use it in GitHub Desktop.
Save kasunkv/a82b502621853ac725698cef115a7f1e to your computer and use it in GitHub Desktop.
RequirementType enum
namespace Microsoft.FeatureManagement
{
public enum RequirementType
{
Any = 0, // The enabled state will be attained if any feature in the set is enabled.
All = 1 // The enabled state will be attained if all features in the set are enabled.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment