WeatherModel.h 576 Bytes
Newer Older
Sandy's avatar
Sandy committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
//
//  WeatherModel.h
//  RealEstateManagement
//
//  Created by Z on 16/7/6.
//  Copyright © 2016年 上海勾芒信息科技. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface WeatherModel : NSObject

@property (nonatomic, copy) NSString *weather;

@property (nonatomic, copy) NSString *wind;

@property (nonatomic, copy) NSString *temperature;

@property (nonatomic, copy) NSString *date;

@property (nonatomic, copy) NSString *dayPictureUrl;

@property (nonatomic, copy) NSString *nightPictureUrl;

@property (nonatomic, copy) NSString *city;


@end