1234567891011121314151617181920 |
- //
- // ZBOrderMOdel.h
- // ZBProject
- //
- // Created by 学丽 on 2019/4/3.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBOrdertitleMOdel : NSObject
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, copy) NSString *count;
- @property (nonatomic, copy) NSString *type;
- @end
- NS_ASSUME_NONNULL_END
|