Blame view

Twear/3rd/QWeather.framework/Headers/OceanCurrentsBaseClass.h 1.04 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
32
33
34
  //
  //  OceanCurrentsBaseClass.h
  //  QWeather
  //
  //  Created by hefeng on 2021/5/14.
  //  Copyright © 2021 Song. All rights reserved.
  //
  
  #import "QWeather.h"
  
  NS_ASSUME_NONNULL_BEGIN
  @class CurrentsTable,CurrentsHourly,Refer;
  
  @interface OceanCurrentsBaseClass : QWeatherBaseModel
  @property (nonatomic , copy) NSString              * code;
  @property (nonatomic , copy) NSString              * updateTime;
  @property (nonatomic , copy) NSString              * fxLink;
  @property (nonatomic, strong) NSArray<CurrentsTable *> *currentsTable;
  @property (nonatomic, strong) NSArray<CurrentsHourly *> *currentsHourly;
  @property (nonatomic , strong) Refer *refer;
  @end
  @interface CurrentsTable : QWeatherBaseModel
  @property (nonatomic, copy) NSString *dir360;
  @property (nonatomic, copy) NSString *fxTime;
  @property (nonatomic, copy) NSString *speedMax;
  @end
  
  @interface CurrentsHourly : QWeatherBaseModel
  @property (nonatomic, copy) NSString *dir360;
  @property (nonatomic, copy) NSString *fxTime;
  @property (nonatomic, copy) NSString *speed;
  @end
  
  NS_ASSUME_NONNULL_END