1 using System.ComponentModel.DataAnnotations;
2 namespace PdfService.Models
4 // represents the data got from sentiment analysis.
5 // TODO: adapt to real data from sentiment analysis
8 public Term(string Name, double Sentiment) {
10 this.Sentiment = Sentiment;
13 public string Name { get; set; }
16 public double Sentiment { get; set; }