namespace PdfService.Models { // represents the data got from sentiment analysis. // TODO: adapt to real data from sentiment analysis public class Tweet { public Tweet(string Name, string Sentiment) { this.Name = Name; this.Sentiment = Sentiment; } public string Name { get; set; } public string Sentiment { get; set; } } }