12345678910111213141516171819202122232425262728293031323334353637 |
- #ifdef SHOULD_COMPILE_LOOKIN_SERVER
- //
- // LookinDisplayItemDetail.h
- // Lookin
- //
- // Created by Li Kai on 2019/2/19.
- // https://lookin.work
- //
- #import "LookinDefines.h"
- @class LookinAttributesGroup;
- @interface LookinDisplayItemDetail : NSObject <NSSecureCoding>
- @property(nonatomic, assign) unsigned long displayItemOid;
- @property(nonatomic, strong) LookinImage *groupScreenshot;
- @property(nonatomic, strong) LookinImage *soloScreenshot;
- @property(nonatomic, strong) NSValue *frameValue;
- @property(nonatomic, strong) NSValue *boundsValue;
- @property(nonatomic, strong) NSNumber *hiddenValue;
- @property(nonatomic, strong) NSNumber *alphaValue;
- @property(nonatomic, copy) NSArray<LookinAttributesGroup *> *attributesGroupList;
- @end
- #endif /* SHOULD_COMPILE_LOOKIN_SERVER */
|