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