1234567891011121314151617181920 |
- //
- // FKShareTargetItem.h
- // FirstLink
- //
- // Created by jack on 16/4/11.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKShareTargetItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *picUrl;
- @property (nonatomic, strong) NSString *shareDesc;
- @property (nonatomic, strong) NSString *shareUrl;
- @end
|