Skip to content

Instantly share code, notes, and snippets.

@AbhiOnGithub
Created July 28, 2018 18:57
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 AbhiOnGithub/5defeb25dc0b720432be719853491059 to your computer and use it in GitHub Desktop.
Save AbhiOnGithub/5defeb25dc0b720432be719853491059 to your computer and use it in GitHub Desktop.
internal class TestSentimentData
{
internal static readonly IEnumerable<SentimentData> Sentiments = new[]
{
new SentimentData
{
SentimentText = "Contoso's 11 is a wonderful experience",
Sentiment = 0
},
new SentimentData
{
SentimentText = "The acting in this movie is very bad",
Sentiment = 0
},
new SentimentData
{
SentimentText = "Joe versus the Volcano Coffee Company is a great film.",
Sentiment = 0
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment