Sin descripción

FKBookRecItem.h 449B

12345678910111213141516171819
  1. //
  2. // FKBookRecItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/4/29.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "FKBookBrandItem.h"
  10. @interface FKBookRecItem : NSObject
  11. @property (nonatomic, strong) FKBookBrandItem *brandItem;
  12. @property (nonatomic, strong) NSString *pushType;
  13. @property (nonatomic, strong) NSArray *recProArray;
  14. - (NSString *)getRealRecType;
  15. @end