Skip to content

Instantly share code, notes, and snippets.

View kirillyakimovich's full-sized avatar

Kirill Yakimovich kirillyakimovich

View GitHub Profile
@interface BaseProperty: NSObject
@property NSString *name;
@end
@implementation BaseProperty
@end
@interface ChildProperty: BaseProperty
@property NSString *nickName;
@end