LookinCustomDisplayItemInfo.h 580 B

123456789101112131415161718192021
  1. #ifdef SHOULD_COMPILE_LOOKIN_SERVER
  2. //
  3. // LookinCustomDisplayItemInfo.h
  4. // LookinServer
  5. //
  6. // Created by likai.123 on 2023/11/1.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface LookinCustomDisplayItemInfo : NSObject <NSSecureCoding, NSCopying>
  10. /// 该属性可能有值(CGRect)也可能是 nil(nil 时则表示无图像)
  11. @property(nonatomic, strong) NSValue *frameInWindow;
  12. @property(nonatomic, copy) NSString *title;
  13. @property(nonatomic, copy) NSString *subtitle;
  14. @property(nonatomic, copy) NSString *danceuiSource;
  15. @end
  16. #endif /* SHOULD_COMPILE_LOOKIN_SERVER */