Exemplo n.º 1
0
 public Vote(Tweet tweet, Tweeter tweeter)
 {
     this.Tweet = tweet;
     this.Tweeter = tweeter;
 }
Exemplo n.º 2
0
 internal Geo(Tweet tweet)
 {
     Tweet = tweet;
     _shape = tweet.GeoShapeType.GetValueOrDefault(GeoShape.Point);
     Coordinates = tweet.Coordinates;
 }
Exemplo n.º 3
0
 public Tag(Tweet tweet)
 {
     this.Tweet = tweet;
 }
Exemplo n.º 4
0
 public Coordinate(Tweet tweet)
 {
     this.Tweet = tweet;
 }