Skip to content

Instantly share code, notes, and snippets.

@grumpycatsaysno
Last active January 28, 2016 08:17
Show Gist options
  • Save grumpycatsaysno/24b0ff2cf9030aa629dc to your computer and use it in GitHub Desktop.
Save grumpycatsaysno/24b0ff2cf9030aa629dc to your computer and use it in GitHub Desktop.
CustomTaxonData class
protected internal class CustomTaxonData
{
public Guid TaxonId { get; set; }
public Guid? ParentTaxonId { get; set; }
public uint Count { get; set;}
public int Size { get; set; }
public string Title { get; set; }
public string Url { get; set; }
public CustomTaxonData()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment