using System.ComponentModel.DataAnnotations;
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;
        }
        [Required]
        public string Name { get; set; }
        [Required]
        public double Sentiment { get; set; }
    }
}