12345678910111213141516171819202122 |
- //
- // FKAssistantTrade.h
- // FirstLink
- //
- // Created by ascii on 15/8/3.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "Motis.h"
- @interface FKAssistantTrade : NSObject
- @property (nonatomic, strong) NSString *postID;
- @property (nonatomic, strong) NSString *userID;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *price;
- @property (nonatomic, strong) NSString *source;
- @property (nonatomic, strong) NSString *photoURL;
- @end
|