20 lines
359 B
Objective-C
20 lines
359 B
Objective-C
//
|
|
// XPMoentsTopicView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/5/12.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class MonentsInfoModel;
|
|
@interface XPMoentsTopicView : UIView
|
|
///显示时间
|
|
@property (nonatomic,strong,readonly) UILabel *timeLabel;
|
|
|
|
@property (nonatomic,strong) MonentsInfoModel *monentsInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|