XG_AlbumCell.h 409 B

1234567891011121314151617
  1. //
  2. // XG_AlbumCell.h
  3. // MyApp
  4. //
  5. // Created by huxinguang on 2018/9/26.
  6. // Copyright © 2018年 huxinguang. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "XG_AlbumModel.h"
  10. @interface XG_AlbumCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *imgView;
  12. @property (weak, nonatomic) IBOutlet UILabel *albumNameLabel;
  13. @property (nonatomic, strong) XG_AlbumModel *model;
  14. @end