mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-13 22:45:23 +08:00
21 lines
357 B
Objective-C
21 lines
357 B
Objective-C
//
|
|
// RKParamsDataAttachment.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 8/6/09.
|
|
// Copyright 2009 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKParamsAttachment.h"
|
|
|
|
@interface RKParamsDataAttachment : RKParamsAttachment {
|
|
NSData* _data;
|
|
}
|
|
|
|
/**
|
|
* The data being attached to the MIME stream
|
|
*/
|
|
@property (nonatomic, retain) NSData* data;
|
|
|
|
@end
|