]> git.somenet.org - pub/jan/aic18.git/blob - service-reporting/Models/Tweet.cs
Merge branch 'service-twitter-multistage-build' into 'master'
[pub/jan/aic18.git] / service-reporting / 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 Tweet(string Name, string Sentiment) {
9             this.Name = Name;
10             this.Sentiment = Sentiment;
11         }
12         public string Name { get; set; }
13         public string Sentiment { get; set; }
14     }
15 }