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

Fixed object prop names

parent 499502b8
No related branches found
No related tags found
1 merge request!180Fix: Update dependencies
......@@ -6,7 +6,7 @@ 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 RepoUrl { get; set; }
public string AccessToken { get; set; }
......@@ -14,7 +14,7 @@ namespace Coscine.Database.ReturnObjects
public GitlabResourceTypeObject(Guid id, string branchName, int projectId, string repoUrl, string accessToken)
{
Id = id;
BranchName = branchName;
Branch = branchName;
ProjectId = projectId;
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