Skip to content
This repository has been archived by the owner on May 19, 2018. It is now read-only.

Commit

Permalink
Add milestone and assignee to repository
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisreimann committed Jun 17, 2013
1 parent 2bdaad0 commit 13c3093
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Classes/GHRepository.h
@@ -1,7 +1,7 @@
#import "GHResource.h"


@class GHIssues, GHPullRequests, GHForks, GHTags, GHBranches, GHMilestones, GHLabels, GHUser, GHReadme, GHEvents, GHUsers;
@class GHIssues, GHPullRequests, GHForks, GHTags, GHBranches, GHMilestones, GHMilestone, GHLabels, GHUser, GHReadme, GHEvents, GHUsers;

@interface GHRepository : GHResource
@property(nonatomic,readonly)NSString *repoId;
Expand All @@ -19,6 +19,7 @@
@property(nonatomic,strong)GHPullRequests *openPullRequests;
@property(nonatomic,strong)GHPullRequests *closedPullRequests;
@property(nonatomic,strong)GHMilestones *milestones;
@property(nonatomic,strong)GHMilestone *milestone;
@property(nonatomic,strong)GHLabels *labels;
@property(nonatomic,strong)GHForks *forks;
@property(nonatomic,strong)GHTags *tags;
Expand All @@ -28,6 +29,7 @@
@property(nonatomic,strong)GHUsers *contributors;
@property(nonatomic,strong)GHUsers *stargazers;
@property(nonatomic,strong)GHUsers *assignees;
@property(nonatomic,strong)GHUser *assignee;
@property(nonatomic,readonly)GHUser *user;
@property(nonatomic,readonly)GHRepository *parent;
@property(nonatomic,readwrite)NSInteger forkCount;
Expand Down

0 comments on commit 13c3093

Please sign in to comment.