123456789101112131415161718192021 |
- //
- // FKBrandSubscribeItem.h
- // FirstLink
- //
- // Created by ascii on 16/4/22.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKBrandSubscribeItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *photoURL;
- @property (nonatomic, strong) NSString *status;
- - (BOOL)isSubscribed;
- @end
|