KWMExchangeRateResult.h 590 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12
//
//  KWMExchangeRateResult.h
//  iCemarose
//
//  Created by HouWeiBin on 2016/12/5.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMCemaroseResult.h"

@interface KWMExchangeRateResult : KWMCemaroseResult

lee committed
13 14 15 16 17 18 19
//@property (nonatomic) NSNumber* exchangeRate;
@property (nonatomic, strong) NSString *status;
@property (nonatomic, strong) NSNumber *code;
@property (nonatomic, strong) NSDictionary *message;
@property (nonatomic, strong) NSString *currency;
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSDecimalNumber *exchange_rate;
houweibin committed
20 21

@end