JLSelectModel.h 571 B

123456789101112131415161718192021222324
  1. //
  2. // JLSelectModel.h
  3. // OnlyViewControllerLink
  4. //
  5. // Created by JayLuo on 2020/4/27.
  6. // Copyright © 2020 朱伟阁. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JLSelectItemModel : NSObject
  11. @property (nonatomic, strong)NSString *subName;
  12. @property (nonatomic, strong)NSString *subType;
  13. @property (nonatomic, strong)NSString *content;
  14. @end
  15. @interface JLSelectModel : NSObject
  16. @property (nonatomic, strong)NSString *name;
  17. @property (nonatomic, strong)NSArray <JLSelectItemModel *>*data;
  18. @end
  19. NS_ASSUME_NONNULL_END