LookinAttributeModification.h 501 B

123456789101112131415161718192021222324
  1. //
  2. // LookinAttributeModification.h
  3. // Lookin
  4. //
  5. // Created by Li Kai on 2018/11/20.
  6. // https://lookin.work
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LookinAttrType.h"
  10. @interface LookinAttributeModification : NSObject <NSSecureCoding>
  11. @property(nonatomic, assign) unsigned long targetOid;
  12. @property(nonatomic, assign) SEL setterSelector;
  13. @property(nonatomic, assign) SEL getterSelector;
  14. @property(nonatomic, assign) LookinAttrType attrType;
  15. @property(nonatomic, strong) id value;
  16. @end