Created
January 16, 2020 15:15
-
-
Save kasunkv/975bba679a7d35ff1e3d7b45c8e5d8c4 to your computer and use it in GitHub Desktop.
String constants with feature names
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 MusicStore.Shared.FeatureManagement | |
{ | |
public static class Features | |
{ | |
public const string Promotions = "Promotion"; | |
public const string PromotionDiscounts = "Promotion.Discounts"; | |
public const string UserSuggestions = "Suggestion.User"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment