コード例 #1
0
ファイル: Vote.cs プロジェクト: Sironfoot/T3ME
 public Vote(Tweet tweet, Tweeter tweeter)
 {
     this.Tweet = tweet;
     this.Tweeter = tweeter;
 }
コード例 #2
0
ファイル: Tweet.cs プロジェクト: Sironfoot/T3ME
 internal Geo(Tweet tweet)
 {
     Tweet = tweet;
     _shape = tweet.GeoShapeType.GetValueOrDefault(GeoShape.Point);
     Coordinates = tweet.Coordinates;
 }
コード例 #3
0
ファイル: Tag.cs プロジェクト: Sironfoot/T3ME
 public Tag(Tweet tweet)
 {
     this.Tweet = tweet;
 }
コード例 #4
0
ファイル: Coordinate.cs プロジェクト: Sironfoot/T3ME
 public Coordinate(Tweet tweet)
 {
     this.Tweet = tweet;
 }