CPDFHeaderFooterModel.h 496 B

1234567891011121314151617181920212223
  1. //
  2. // CPDFModelData.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2022/11/21.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CPDFHeaderFooterModel : NSObject
  11. @property (nonatomic,strong) UIColor *fontColor;
  12. @property (nonatomic,assign) NSUInteger fontPosition;
  13. @property (nonatomic,assign) CGFloat fontSize;
  14. @property (nonatomic,assign) NSInteger fontSelcet;
  15. @property (nonatomic,strong) NSString *pageStart;
  16. @end
  17. NS_ASSUME_NONNULL_END