PDFWatermarkDataModel.m 282 B

12345678910111213141516171819
  1. //
  2. // CPDFDataModel.m
  3. // PDFViewer
  4. //
  5. // Created by kdan on 2022/11/21.
  6. //
  7. #import "PDFWatermarkDataModel.h"
  8. @implementation PDFWatermarkDataModel
  9. -(instancetype)init {
  10. if (self = [super init]) {
  11. _textColor = [[UIColor alloc] init];
  12. }
  13. return self;
  14. }
  15. @end