1234567891011121314151617181920212223242526272829 |
- //
- // KBSignInModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/9/27.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "KBSignDetailModel.h"
- #import "KBSignDaysModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface KBSignInModel : NSObject
- @property (nonatomic, strong) NSArray *days;
- @property (nonatomic, strong) NSArray *detail;
- @property (nonatomic, strong) NSArray * red_url;
- @property (nonatomic, strong) NSString* sign_img;
- @property (nonatomic, strong) NSString* describe_img;
- @property (nonatomic, strong) NSString* red_roule;
- @property (nonatomic, strong) NSString* red_message;
- @property (nonatomic, strong) NSString* uninstall_taobao;
- @property (nonatomic, assign) NSInteger type;
- @property (nonatomic, assign) NSInteger sign;
- @property (nonatomic, copy) NSString *now_days;
- @end
- NS_ASSUME_NONNULL_END
|