Sha256: 99a088c5fa5535fce3bddbd72e4d33fa9d053f49ce37fb01634d21cf4508ba43
Contents?: true
Size: 475 Bytes
Versions: 9
Compression:
Stored size: 475 Bytes
Contents
#import "GHTag.h" #import "GHLocation.h" @interface GHTag () @property (nonatomic, strong) GHLocation * location; @property (nonatomic, strong) NSString * name; @end @implementation GHTag @synthesize location; @synthesize name; - (id)initWithLocation:(GHLocation *)theLocation name:(NSString *)theName { if (self = [super init]) { location = theLocation; name = theName; } return self; } @end
Version data entries
9 entries across 9 versions & 1 rubygems