123456789101112131415161718192021 |
- //
- // TrainingSituationModel.h
- // LN_School
- //
- // Created by 张嵘 on 2019/7/18.
- // Copyright © 2019 Danson. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface TrainingSituationModel : NSObject
- @property (nonatomic, readwrite, copy) NSString *imageName;
- @property (nonatomic, readwrite, copy) NSString *name;
- @property (nonatomic, readwrite, copy) NSString *carType;
- @property (nonatomic, readwrite, copy) NSString *totalHours;
- @property (nonatomic, readwrite, copy) NSString *finishedHours;
- @end
- NS_ASSUME_NONNULL_END
|