Açıklama Yok

FKTopicItem.h 918B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // FKTopicItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/10/12.
  6. // Copyright © 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKTopicItem : NSObject
  10. @property (nonatomic, strong) NSString *topicId;
  11. @property (nonatomic, strong) NSString *name;
  12. @property (nonatomic, strong) NSString *descStr;
  13. @property (nonatomic, strong) NSString *picUrl;
  14. @property (nonatomic, strong) NSString *targetUrl;
  15. @property (nonatomic, strong) NSString *displayType;
  16. @property (nonatomic, strong) NSString *objectType;
  17. @property (nonatomic, strong) NSString *position;
  18. @property (nonatomic, strong) NSString *creatTime;
  19. @property (nonatomic, strong) NSString *updateTime;
  20. @property (nonatomic, strong) NSString *shareTitle;
  21. @property (nonatomic, strong) NSString *shareURL;
  22. @property (nonatomic, assign) NSUInteger totalCount;
  23. - (NSString *)handleDescStr;
  24. - (BOOL)isProductType;
  25. @end