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