MGGlobalVipView.h 493 B

12345678910111213141516171819202122232425
  1. //
  2. // MGGlobalVipView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2020/6/18.
  6. // Copyright © 2020 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CustomMessageModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MGGlobalVipView : UIView
  12. @property(nonatomic, strong) UIImageView *bgImgView;
  13. @property(nonatomic, strong) UIImageView *iconImgView;
  14. @property(nonatomic, strong) UILabel *contentL;
  15. @property(nonatomic, strong) CustomMessageModel *model;
  16. @end
  17. NS_ASSUME_NONNULL_END