123456789101112131415 |
- //
- // UCPacketBody.h
- // wolfman
- //
- // Created by 张灿 on 2017/5/16.
- // Copyright © 2017年 shareSmile. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface UCPacketBody : NSObject
- - (instancetype)initWithData:(NSData *)data;
- @property (nonatomic, strong, readonly) NSData *data;
- @property (nonatomic, readonly) NSTimeInterval timeout;
- @end
|