WardViewTopCell.h 477 B

123456789101112131415161718192021222324
  1. //
  2. // WardViewTopCell.h
  3. // BuguLive
  4. //
  5. // Created by 范东 on 2019/1/28.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class WardPopViewModel;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface WardViewTopCell : UITableViewCell
  12. @property (nonatomic, strong) WardPopViewModel *model;
  13. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *nameToTopContraist;
  14. @property (weak, nonatomic) IBOutlet UIImageView *guardImgView;
  15. @end
  16. NS_ASSUME_NONNULL_END