28 lines
589 B
Objective-C
28 lines
589 B
Objective-C
//
|
|
// ContentShareMonentsModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/6/27.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ContentShareMonentsModel : NSObject
|
|
///动态内容
|
|
@property (nonatomic,copy) NSString *content;
|
|
///动态id
|
|
@property (nonatomic,copy) NSString *dynamicId;
|
|
///头像
|
|
@property (nonatomic,copy) NSString *avatar;
|
|
///标题
|
|
@property (nonatomic,copy) NSString *title;
|
|
///跳转类型
|
|
@property (nonatomic,assign) NSInteger routerType;
|
|
///跳转的id
|
|
@property (nonatomic,copy) NSString *routerValue;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|