Blame view

HDFwear/3rd/QWeather.framework/Headers/WeatherMinutelyBaseClass.h 785 Bytes
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  //
  //Created by QWeather on 18/07/27.
  //分钟级降雨(邻近预报)
  
  #import "QWeatherBaseModel.h"
  
  @class Minutely,Refer;
  @interface WeatherMinutelyBaseClass : QWeatherBaseModel
  @property (nonatomic , copy) NSString              * code;
  @property (nonatomic , copy) NSString              * updateTime;
  @property (nonatomic , copy) NSString              * fxLink;
  @property (nonatomic , copy) NSString              * summary;
  @property (nonatomic , strong) NSArray<Minutely *>              * minutely;
  @property (nonatomic , strong) Refer *refer;
  @end
  @interface Minutely :QWeatherBaseModel
  @property (nonatomic , copy) NSString              * precip;
  @property (nonatomic , copy) NSString              * fxTime;
  @property (nonatomic , copy) NSString              * type;
  
  @end