cknadler/nidyx

View on GitHub
examples/defs_and_refs/ExampleModel.h

Summary

Maintainability
Test Coverage
#import "JSONModel.h"

@class ExampleValueModel;
@protocol ExampleValueModel;
@protocol ExampleModel @end

@interface ExampleModel : JSONModel
@property (strong, nonatomic) NSString *key;
@property (strong, nonatomic) ExampleValueModel *value;
@end