KSBaseGuideModel.h 544 B

12345678910111213141516171819202122232425262728
  1. //
  2. // KSBaseGuideModel.h
  3. // KulexiuSchoolStudent
  4. //
  5. // Created by 王智 on 2024/7/26.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface KSBaseGuideModel : NSObject
  10. @property (nonatomic, strong) NSString *displayImageName;
  11. @property (nonatomic, assign) NSInteger currentIndex;
  12. @property (nonatomic, assign) NSInteger totalIndex;
  13. @property (nonatomic, assign) CGRect guideViewFrame;
  14. @property (nonatomic, assign) CGRect imageFrame;
  15. @property (nonatomic, assign) CGRect buttonFrame;
  16. @end
  17. NS_ASSUME_NONNULL_END