File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
NIMKit/NIMKit/Classes/Sections/Model Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1212
1313@interface NIMLinkModel : NSObject
1414
15- @property (nonatomic ,copy ) NSString *title;
16- @property (nonatomic ,copy ) NSString *linkValue;
15+ @property (nonatomic ,copy , nonnull ) NSString *title;
16+ @property (nonatomic ,copy , nonnull ) NSString *linkValue;
1717@property (nonatomic ,assign ) NSRange range;
1818
1919@end
2020
2121@interface NIMLinkModelPraserResult : NSObject
2222
23- @property (nonatomic ,strong ) NSArray <NIMLinkModel *> *links;
24- @property (nonatomic ,strong ) NSString *text;
23+ @property (nonatomic ,strong , nonnull ) NSArray <NIMLinkModel *> *links;
24+ @property (nonatomic ,strong , nonnull ) NSString *text;
2525
2626+ (nonnull NIMLinkModelPraserResult *) praser : (NSString *)text ;
2727
2828@end
2929
3030
31+
3132@interface NIMMessageModel : NSObject
3233
3334/* *
You can’t perform that action at this time.
0 commit comments