// // TWTRTweetHashtagEntity.h // // Copyright (c) 2016 Twitter. All rights reserved. // #import #import "TWTRTweetEntity.h" NS_ASSUME_NONNULL_BEGIN /** * A Tweet entity which represents a Hashtag like '#twitterkit' */ @interface TWTRTweetHashtagEntity : TWTRTweetEntity /** * The text represented by this entity. * @note This entity does not include the '#'. */ @property (nonatomic, copy, readonly) NSString *text; @end NS_ASSUME_NONNULL_END