123456789101112131415161718192021 |
- //
- // KBTodayBannerModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/1/22.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface KBTodayBannerModel : NSObject
- @property (nonatomic, strong) NSString *group_id;
- @property (nonatomic, strong) NSString *photo;
- @property (nonatomic, strong) NSString *note;
- @property (nonatomic, strong) NSString *url;
- @property (nonatomic, strong) NSString *type;
- @end
|