LookinDisplayItemDetail.h 710 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // LookinDisplayItemDetail.h
  3. // Lookin
  4. //
  5. // Created by Li Kai on 2019/2/19.
  6. // https://lookin.work
  7. //
  8. #import "LookinDefines.h"
  9. @class LookinAttributesGroup;
  10. @interface LookinDisplayItemDetail : NSObject <NSSecureCoding>
  11. @property(nonatomic, assign) unsigned long displayItemOid;
  12. @property(nonatomic, strong) LookinImage *groupScreenshot;
  13. @property(nonatomic, strong) LookinImage *soloScreenshot;
  14. @property(nonatomic, strong) NSValue *frameValue;
  15. @property(nonatomic, strong) NSValue *boundsValue;
  16. @property(nonatomic, strong) NSNumber *hiddenValue;
  17. @property(nonatomic, strong) NSNumber *alphaValue;
  18. @property(nonatomic, copy) NSArray<LookinAttributesGroup *> *attributesGroupList;
  19. @end