12345678910111213141516171819 |
- //
- // PreExamInfoModel.h
- // LN_School
- //
- // Created by 张嵘 on 2019/7/26.
- // Copyright © 2019 Danson. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PreExamInfoModel : NSObject
- @property (nonatomic, readwrite, copy) NSString *time;
- @property (nonatomic, readwrite, copy) NSString *object;
- @property (nonatomic, readwrite, copy) NSString *score;
- @end
- NS_ASSUME_NONNULL_END
|