Github.Api.Core.CreateRepositoryInfo.CreateRepositoryInfo C# (CSharp) Method

CreateRepositoryInfo() public method

public CreateRepositoryInfo ( string name ) : Newtonsoft.Json
name string
return Newtonsoft.Json
		public CreateRepositoryInfo(string name)
		{
			this.Name = name;
			this.HasIssues = true;
			this.HasWiki = true;
			this.HasDownloads = true;
		}
	}
CreateRepositoryInfo