Skip to content

Instantly share code, notes, and snippets.

@blacktambourine
Created August 18, 2017 07:34
Show Gist options
  • Save blacktambourine/17feefd36cf2ad86d8cfc947c86f0087 to your computer and use it in GitHub Desktop.
Save blacktambourine/17feefd36cf2ad86d8cfc947c86f0087 to your computer and use it in GitHub Desktop.
Search Facet
public class FieldFacet
{
public FieldFacet()
{
}
public FieldFacet(string type, string name, string path, int count)
{
FacetType = type;
FacetName = name;
Path = path;
Count = count;
}
public string Id { get; set; }
public string FacetType { get; set; }
public string FacetName { get; set; }
public string Path { get; set; }
public int Count { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment