| 123456789101112131415161718192021 |
- //
- // WardViewCell.h
- // BuguLive
- //
- // Created by 范东 on 2019/1/28.
- // Copyright © 2019 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class WardPopViewModel;
- NS_ASSUME_NONNULL_BEGIN
- @interface WardViewCell : UITableViewCell
- @property (nonatomic, strong) WardPopViewModel *model;
- @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
- @end
- NS_ASSUME_NONNULL_END
|