public void deleteLikedTweet(Tweet tweet) { if (this.likedTweets.Contains(tweet)) this.likedTweets.Remove(tweet); }
public Tweet(Tweet newTweet) { this.ID = newTweet.ID; this.author = newTweet.author; this.isMention = newTweet.isMention; }
public bool isLike(Tweet tweet) { return likedTweets.Contains(tweet); }