LookinConnectionAttachment.h 439 B

123456789101112131415161718192021222324
  1. #ifdef SHOULD_COMPILE_LOOKIN_SERVER
  2. //
  3. // LookinConnectionAttachment.h
  4. // Lookin
  5. //
  6. // Created by Li Kai on 2019/2/15.
  7. // https://lookin.work
  8. //
  9. #import <Foundation/Foundation.h>
  10. #import "LookinCodingValueType.h"
  11. @interface LookinConnectionAttachment : NSObject <NSSecureCoding>
  12. @property(nonatomic, assign) LookinCodingValueType dataType;
  13. @property(nonatomic, strong) id data;
  14. @end
  15. #endif /* SHOULD_COMPILE_LOOKIN_SERVER */