Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created January 16, 2020 15:15
Show Gist options
  • Save kasunkv/975bba679a7d35ff1e3d7b45c8e5d8c4 to your computer and use it in GitHub Desktop.
Save kasunkv/975bba679a7d35ff1e3d7b45c8e5d8c4 to your computer and use it in GitHub Desktop.
String constants with feature names
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