UCPacketBody.h 365 B

123456789101112131415
  1. //
  2. // UCPacketBody.h
  3. // wolfman
  4. //
  5. // Created by 张灿 on 2017/5/16.
  6. // Copyright © 2017年 shareSmile. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface UCPacketBody : NSObject
  10. - (instancetype)initWithData:(NSData *)data;
  11. @property (nonatomic, strong, readonly) NSData *data;
  12. @property (nonatomic, readonly) NSTimeInterval timeout;
  13. @end