28 lines
624 B
Objective-C
28 lines
624 B
Objective-C
//
|
||
// ContentTweetModel.h
|
||
// YUMI
|
||
//
|
||
// Created by YUMI on 2022/4/28.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface ContentTweetModel : PIBaseModel
|
||
///跳转的地址
|
||
@property (nonatomic,copy) NSString *webUrl;
|
||
///标题
|
||
@property (nonatomic,copy) NSString *title;
|
||
///描述
|
||
@property (nonatomic,copy) NSString *desc;
|
||
///显示的照片
|
||
@property (nonatomic,copy) NSString *picUrl;
|
||
///跳转类型 1:房间, 2:h5
|
||
@property (nonatomic, assign) NSInteger routerType;
|
||
///跳转内容--H5链接或者房主uid
|
||
@property (nonatomic, copy) NSString *routerValue;
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|