This file contains 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 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