mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-05 17:40:47 +08:00
21 lines
367 B
Objective-C
21 lines
367 B
Objective-C
//
|
|
// RKParamsFileAttachment.h
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 8/6/09.
|
|
// Copyright 2009 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKParamsAttachment.h"
|
|
|
|
@interface RKParamsFileAttachment : RKParamsAttachment {
|
|
NSString* _filePath;
|
|
}
|
|
|
|
/**
|
|
* The path to this file attachment on disk
|
|
*/
|
|
@property (nonatomic, retain) NSString* filePath;
|
|
|
|
@end
|