1234567891011121314151617181920 |
- //
- // DRCommissionHeaderModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/11/23.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface DRCommissionHeaderModel : NSObject
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, copy) NSString *count;
- @property (nonatomic, copy) NSString *type;
- @end
- NS_ASSUME_NONNULL_END
|