mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-10 20:29:57 +00:00
13 lines
261 B
C
13 lines
261 B
C
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface Element : NSObject
|
||
|
{
|
||
|
NSString *label;
|
||
|
NSString *type;
|
||
|
}
|
||
|
|
||
|
- (id)initWithType:(NSString *)typeValue andLabel:(NSString *)labelValue;
|
||
|
+ (id)elementOfType:(NSString *)typeValue withLabel:(NSString *)labelValue;
|
||
|
|
||
|
@end
|