123456789101112131415161718 |
- //
- // HomePageSecOneModel.h
- // LN_School
- //
- // Created by 张嵘 on 2019/7/10.
- // Copyright © 2019 Danson. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface HomePageSecOneModel : NSObject
- @property (nonatomic, readwrite, copy) NSString *title;
- @property (nonatomic, readwrite, copy) NSString *imageName;
- @end
- NS_ASSUME_NONNULL_END
|