Exemplo n.º 1
0
        private RepositoryBranch(string ProgramId, long?RepositoryId, string Name, RepositoryBranchLinks Links)
        {
            this.ProgramId = ProgramId;

            this.RepositoryId = RepositoryId;

            this.Name = Name;

            this.Links = Links;
        }
Exemplo n.º 2
0
 /// <summary>
 /// Sets value for RepositoryBranch.Links property.
 /// </summary>
 /// <param name="value">Links</param>
 public RepositoryBranchBuilder Links(RepositoryBranchLinks value)
 {
     _Links = value;
     return(this);
 }