Created
August 18, 2017 07:34
-
-
Save blacktambourine/17feefd36cf2ad86d8cfc947c86f0087 to your computer and use it in GitHub Desktop.
Search Facet
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
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