MyTDGroupCell.h 350 B

12345678910111213141516171819
  1. //
  2. // MyTDGroupCell.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/10/31.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "TDTableViewCell.h"
  9. #import "NoticeModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @class MyTDGroupModel;
  12. @interface MyTDGroupCell : UITableViewCell
  13. - (void)loadGroupData:(NoticeModel *)model;
  14. @end
  15. NS_ASSUME_NONNULL_END