Skip to content
Snippets Groups Projects
Commit 499502b8 authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

RepositoryUrl to RepoUrl

parent 31c31ac4
No related branches found
No related tags found
1 merge request!180Fix: Update dependencies
......@@ -8,7 +8,7 @@ namespace Coscine.Database.ReturnObjects
public Guid Id { get; set; }
public string BranchName { 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)
......@@ -16,7 +16,7 @@ namespace Coscine.Database.ReturnObjects
Id = id;
BranchName = branchName;
ProjectId = projectId;
RepositoryUrl = new Uri(repoUrl);
RepoUrl = new Uri(repoUrl);
AccessToken = accessToken;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment