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