forked from loafle/openapi-generator-original
17 lines
253 B
Objective-C
17 lines
253 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "SWGObject.h"
|
|
|
|
|
|
@interface SWGStringValue : SWGObject
|
|
|
|
@property(nonatomic) NSString* word;
|
|
|
|
- (id) word: (NSString*) word;
|
|
|
|
- (id) initWithValues: (NSDictionary*)dict;
|
|
- (NSDictionary*) asDictionary;
|
|
|
|
|
|
@end
|
|
|