Created
January 18, 2020 16:16
-
-
Save kasunkv/a82b502621853ac725698cef115a7f1e to your computer and use it in GitHub Desktop.
RequirementType enum
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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