12345678910111213141516171819 |
- //
- // MyTDGroupCell.h
- // smartRhino
- //
- // Created by tederen on 2019/10/31.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "TDTableViewCell.h"
- #import "NoticeModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @class MyTDGroupModel;
- @interface MyTDGroupCell : UITableViewCell
- - (void)loadGroupData:(NoticeModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|