LookinDisplayItemDetail.h 791 B

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