Skip to content
Snippets Groups Projects

Release: Sprint/2022 21 :robot:

Merged Petar Hristov requested to merge dev into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -6,17 +6,17 @@ namespace Coscine.Database.ReturnObjects
public class GitlabResourceTypeObject : ResourceTypeOptionObject
{
public Guid Id { get; set; }
public string BranchName { get; set; }
public string Branch { get; set; }
public int ProjectId { get; set; }
public Uri RepositoryUrl { get; set; }
public Uri RepoUrl { get; set; }
public string AccessToken { get; set; }
public GitlabResourceTypeObject(Guid id, string branchName, int projectId, string repoUrl, string accessToken)
{
Id = id;
BranchName = branchName;
Branch = branchName;
ProjectId = projectId;
RepositoryUrl = new Uri(repoUrl);
RepoUrl = new Uri(repoUrl);
AccessToken = accessToken;
}
}
Loading