| 123456789101112131415 |
- //
- // DetailOnlyTextViewController.h
- // model
- //
- // Created by MUMEI on 2018/8/6.
- // Copyright © 2018年 Mine. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PrivateModel.h"
- @interface DetailOnlyTextViewController : UIViewController
- @property (strong, nonatomic) PrivateModel*model;
- @property (strong, nonatomic) NSString *iconImage;
- @property (strong, nonatomic) NSString *name;
- @end
|