public Vote(Tweet tweet, Tweeter tweeter) { this.Tweet = tweet; this.Tweeter = tweeter; }
internal Geo(Tweet tweet) { Tweet = tweet; _shape = tweet.GeoShapeType.GetValueOrDefault(GeoShape.Point); Coordinates = tweet.Coordinates; }
public Tag(Tweet tweet) { this.Tweet = tweet; }
public Coordinate(Tweet tweet) { this.Tweet = tweet; }