Keine Beschreibung

FKBrandSubscribeItem.h 441B

123456789101112131415161718192021
  1. //
  2. // FKBrandSubscribeItem.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/4/22.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKBrandSubscribeItem : NSObject
  10. @property (nonatomic, strong) NSString *itemID;
  11. @property (nonatomic, strong) NSString *name;
  12. @property (nonatomic, strong) NSString *photoURL;
  13. @property (nonatomic, strong) NSString *status;
  14. - (BOOL)isSubscribed;
  15. @end