Blame view

HDFwear/3rd/QWeather.framework/Headers/IndicesBaseClass.h 1.27 KB
75d24c15   yangbin   123
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
29
30
31
  //
  //Created by QWeather on 18/07/27.
  //生活指数
  
  #import "QWeatherBaseModel.h"
  
  @class IndicesDaily,IndicesNow,Refer;
  @interface IndicesBaseClass : QWeatherBaseModel
  @property (nonatomic , copy) NSString              * code;
  @property (nonatomic , copy) NSString              * updateTime;
  @property (nonatomic , copy) NSString              * fxLink;
  @property (nonatomic , strong) NSArray<IndicesDaily *>              * daily;
  @property (nonatomic , strong) IndicesNow              * now;
  @property (nonatomic , strong) Refer *refer;
  @end
  @interface IndicesDaily :QWeatherBaseModel
  @property (nonatomic , copy) NSString              * text;
  @property (nonatomic , copy) NSString              * level;
  @property (nonatomic , copy) NSString              * category;
  @property (nonatomic , copy) NSString              * type;
  @property (nonatomic , copy) NSString              * name;
  @property (nonatomic , copy) NSString              * date;
  @end
  
  @interface IndicesNow :QWeatherBaseModel
  @property (nonatomic , copy) NSString              * txt;
  @property (nonatomic , copy) NSString              * level;
  @property (nonatomic , copy) NSString              * category;
  @property (nonatomic , copy) NSString              * type;
  @property (nonatomic , copy) NSString              * name;
  @end