12345678910111213141516171819 |
- //
- // KBSignDaysModel.h
- // YouHuiProject
- //
- // Created by jcymac on 2018/10/15.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KBSignDaysModel : NSObject
- @property (nonatomic, assign) NSInteger days;
- @property (nonatomic, assign) NSInteger type;
- @end
- NS_ASSUME_NONNULL_END
|