123456789101112131415161718192021222324 |
- //
- // JLSelectModel.h
- // OnlyViewControllerLink
- //
- // Created by JayLuo on 2020/4/27.
- // Copyright © 2020 朱伟阁. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface JLSelectItemModel : NSObject
- @property (nonatomic, strong)NSString *subName;
- @property (nonatomic, strong)NSString *subType;
- @property (nonatomic, strong)NSString *content;
- @end
- @interface JLSelectModel : NSObject
- @property (nonatomic, strong)NSString *name;
- @property (nonatomic, strong)NSArray <JLSelectItemModel *>*data;
- @end
- NS_ASSUME_NONNULL_END
|