Files
peko-ios/YuMi/Modules/YMMessage/Model/SessionContent/ContentTweetModel.h
2023-11-15 17:25:09 +08:00

28 lines
624 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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房间 2h5
@property (nonatomic, assign) NSInteger routerType;
///跳转内容--H5链接或者房主uid
@property (nonatomic, copy) NSString *routerValue;
@end
NS_ASSUME_NONNULL_END