StudentDetailInfoHeaderModel.h 654 B

1234567891011121314151617181920212223
  1. //
  2. // StudentDetailInfoHeaderModel.h
  3. // LN_School
  4. //
  5. // Created by 张嵘 on 2019/7/25.
  6. // Copyright © 2019 Danson. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface StudentDetailInfoHeaderModel : NSObject
  11. @property (nonatomic, readwrite, copy) NSString *nameStr;
  12. @property (nonatomic, readwrite, copy) NSString *headerImageUrlStr;
  13. @property (nonatomic, readwrite, copy) NSString *sexStr;
  14. @property (nonatomic, readwrite, copy) NSString *driverSchoolStr;
  15. @property (nonatomic, readwrite, copy) NSString *phoneStr;
  16. @property (nonatomic, readwrite, copy) NSString *remarkStr;
  17. @end
  18. NS_ASSUME_NONNULL_END