From b41d9cee00bb51ae06c6f803c5d062a080a79cd1 Mon Sep 17 00:00:00 2001 From: Henrik Andersson Date: Tue, 13 Oct 2015 18:00:42 +1000 Subject: [PATCH] Make HasIssues nullable as it's optional --- Octokit/Models/Request/NewRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit/Models/Request/NewRepository.cs b/Octokit/Models/Request/NewRepository.cs index 7e0046796c..04184c5d16 100644 --- a/Octokit/Models/Request/NewRepository.cs +++ b/Octokit/Models/Request/NewRepository.cs @@ -40,7 +40,7 @@ public NewRepository(string name) /// /// Optional. Gets or sets whether to enable issues for the new repository. The default is true. /// - public bool HasIssues { get; set; } + public bool? HasIssues { get; set; } /// /// Optional. Gets or sets whether to enable the wiki for the new repository. The default is true.