This commit is contained in:
2018-06-08 09:57:53 +02:00
parent 06fdc78de7
commit bf8ea11410
10 changed files with 2781 additions and 27 deletions

View File

@ -0,0 +1,9 @@
namespace Yavsc.Server.Models.IT.SourceCode
{
public class GitRepositoryReference
{
public string Url { get; set; }
public string Path { get; set; }
public string Branch { get; set; }
}
}