12 lines
228 B
Objective-C
12 lines
228 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface EXPUnsupportedObject : NSObject {
|
|
NSString *_type;
|
|
}
|
|
|
|
@property (nonatomic, retain) NSString *type;
|
|
|
|
- (instancetype)initWithType:(NSString *)type NS_DESIGNATED_INITIALIZER;
|
|
|
|
@end
|