| 12345678910111213141516171819202122232425262728 |
- //
- // KSBaseGuideModel.h
- // KulexiuSchoolStudent
- //
- // Created by 王智 on 2024/7/26.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KSBaseGuideModel : NSObject
- @property (nonatomic, strong) NSString *displayImageName;
- @property (nonatomic, assign) NSInteger currentIndex;
- @property (nonatomic, assign) NSInteger totalIndex;
- @property (nonatomic, assign) CGRect guideViewFrame;
- @property (nonatomic, assign) CGRect imageFrame;
- @property (nonatomic, assign) CGRect buttonFrame;
- @end
- NS_ASSUME_NONNULL_END
|