WarningListClass.h 545 Bytes
//
//  warningLocListClass.h
//  QWeather
//
//  Created by he on 2020/4/26.
//  Copyright © 2020 Song. All rights reserved.
//

#import "QWeatherBaseModel.h"
@class WarningLoc,Refer;

@interface WarningListClass : QWeatherBaseModel
@property (nonatomic, copy) NSString *code;
@property (nonatomic, copy) NSString *updateTime;
@property (nonatomic, strong) NSArray<WarningLoc *> *warningLocList;
@property (nonatomic , strong) Refer *refer;
@end

@interface WarningLoc : QWeatherBaseModel
@property (nonatomic,copy) NSString *locationId;
@end