LookinCustomAttrModification.h 470 B

1234567891011121314151617181920
  1. #ifdef SHOULD_COMPILE_LOOKIN_SERVER
  2. //
  3. // LookinCustomAttrModification.h
  4. // LookinShared
  5. //
  6. // Created by likaimacbookhome on 2023/11/4.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LookinAttrType.h"
  10. @interface LookinCustomAttrModification : NSObject <NSSecureCoding>
  11. @property(nonatomic, assign) LookinAttrType attrType;
  12. @property(nonatomic, copy) NSString *customSetterID;
  13. @property(nonatomic, strong) id value;
  14. @end
  15. #endif /* SHOULD_COMPILE_LOOKIN_SERVER */