Sha256: 0dad2f7497c96ca09c8135aa232e94c4dd8b2a7d7216ce16991b0ca9b47edebc
Contents?: true
Size: 1.22 KB
Versions: 9
Compression:
Stored size: 1.22 KB
Contents
#import "GHHasLocationProtocol.h" #import "GHHasDescriptionProtocol.h" #import "GHHasTagsProtocol.h" @class GHTag; @class GHLocation; @class GHBackground; @class GHScenarioDefinition; @class GHComment; @interface GHFeature : NSObject <GHHasLocationProtocol, GHHasDescriptionProtocol, GHHasTagsProtocol> @property (nonatomic, readonly) NSArray<GHTag *> * tags; @property (nonatomic, readonly) GHLocation * location; @property (nonatomic, readonly) NSString * language; @property (nonatomic, readonly) NSString * keyword; @property (nonatomic, readonly) NSString * name; @property (nonatomic, readonly) NSString * desc; @property (nonatomic, readonly) NSArray<GHScenarioDefinition *> * children; @property (nonatomic, readonly) NSArray<GHComment *> * comments; - (id)initWithTags:(NSArray<GHTag *> *)theTags location:(GHLocation *)theLocation language:(NSString *)theLanguage keyword:(NSString *)theKeyword name:(NSString *)theName description:(NSString *)theDescription children:(NSArray<GHScenarioDefinition *> *)theChildren comments:(NSArray<GHComment *> *)theComments; @end
Version data entries
9 entries across 9 versions & 1 rubygems