SomeNet
/
public repos
/
pub
/
jan
/
aic18.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Issue #3:
[pub/jan/aic18.git]
/
PdfService
/
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 string Name { get; set; }
9
public string Sentiment { get; set; }
10
}
11
}