123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #import <Foundation/Foundation.h>
- typedef NS_ENUM(NSInteger, WFCCConversationType) {
- Single_Type,
- Group_Type,
- Chatroom_Type,
- Channel_Type,
- Things_Type,
- } ;
- @interface WFCCConversation : NSObject
- +(instancetype)conversationWithType:(WFCCConversationType)type
- target:(NSString *)target
- line:(int)line;
- @property (nonatomic, assign)WFCCConversationType type;
- @property (nonatomic, strong)NSString *target;
- @property (nonatomic, assign)int line;
- @end
|