Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created April 12, 2018 14:54
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 icebeam7/2007f5580ead988fe735a916f9d76453 to your computer and use it in GitHub Desktop.
Save icebeam7/2007f5580ead988fe735a916f9d76453 to your computer and use it in GitHub Desktop.
Sentimental Tweets: Document.cs
namespace SentimentalTweets.Modelos
{
public class Document
{
public string Id { get; set; }
public string Text { get; set; }
public string Language { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment