]> git.somenet.org - pub/jan/aic18.git/blob - PdfService/Models/Tweet.cs
Issue #3:
[pub/jan/aic18.git] / PdfService / Models / Tweet.cs
1
2 namespace PdfService.Models
3 {
4     // represents the data got from sentiment analysis.
5     // TODO: adapt to real data from sentiment analysis
6     public class Tweet
7     {
8         public string Name { get; set; }
9         public string Sentiment { get; set; }
10     }
11 }