1234567891011121314151617181920 |
- //
- // HomePageSignUpSituationModel.h
- // LN_School
- //
- // Created by 张嵘 on 2019/7/15.
- // Copyright © 2019 Danson. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface HomePageSignUpSituationModel : NSObject
- @property (nonatomic, readwrite, copy) NSString *imageName;
- @property (nonatomic, readwrite, copy) NSString *name;
- @property (nonatomic, readwrite, copy) NSString *sex;
- @property (nonatomic, readwrite, copy) NSString *school;
- @end
- NS_ASSUME_NONNULL_END
|