1234567891011121314151617 |
- //
- // DRMessageListCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/21.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "DRMessageModel.h"
- @interface DRMessageListCell : UITableViewCell
- @property (nonatomic, strong) DRMessageModel *model;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- - (void)isRead;
- @end
|