1234567891011121314151617181920212223242526 |
- //
- // KBSignDetailModel.h
- // YouHuiProject
- //
- // Created by jcymac on 2018/10/15.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KBSignDetailModel : NSObject
- @property (nonatomic, strong) NSString* img;
- @property (nonatomic, strong) NSString* content;
- @property (nonatomic, assign) NSInteger type;
- @property (nonatomic, strong) NSString* time_describe;
- @property (nonatomic, strong) NSString* red_url;
- @property (nonatomic, strong) NSDictionary* postion;
- @property (nonatomic, copy) NSString *btn;
- @property (nonatomic, copy) NSString *ot_url;
- //
- @end
- NS_ASSUME_NONNULL_END
|