Skip to content

Instantly share code, notes, and snippets.

@Defcoq
Created October 3, 2019 16:02
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 Defcoq/099ae5d926122d1d45d8a48800157229 to your computer and use it in GitHub Desktop.
Save Defcoq/099ae5d926122d1d45d8a48800157229 to your computer and use it in GitHub Desktop.
this will represent a single item in our cloudtag
public class TagCloudItem
{
public string Url { get; set; }
public int Weight { get; set; }
public string DisplayText { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment