Skip to content

Instantly share code, notes, and snippets.

@websterian
Created August 31, 2018 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save websterian/667fca91d79b85c8fce40324b54ca97d to your computer and use it in GitHub Desktop.
Save websterian/667fca91d79b85c8fce40324b54ca97d to your computer and use it in GitHub Desktop.
namespace Sitecore.Services.Examples.Indexing
{
using Sitecore.Commerce.Core;
public class FacetsComponent : Component
{
public FacetsComponent()
{
Colors = string.Empty;
Sizes = string.Empty;
Styles = string.Empty;
SellPrices = string.Empty;
ListPrices = string.Empty;
PercentagesOff = string.Empty;
PriceRange = string.Empty;
}
public string Colors { get; set; }
public string Sizes { get; set; }
public string Styles { get; set; }
public string SellPrices { get; set; }
public string ListPrices { get; set; }
public string PercentagesOff { get; set; }
public string PriceRange { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment