| 1234567891011121314151617181920212223 |
- //
- // PINRemoteImageMemoryContainer.h
- // Pods
- //
- // Created by Garrett Moon on 3/17/16.
- //
- //
- #import <Foundation/Foundation.h>
- #import "PINRemoteImageMacros.h"
- #import "PINRemoteLock.h"
- @class PINImage;
- @interface PINRemoteImageMemoryContainer : NSObject
- @property (nonatomic, strong) PINImage *image;
- @property (nonatomic, strong) NSData *data;
- @property (nonatomic, strong) PINRemoteLock *lock;
- @end
|