Some checks failed
ci/woodpecker/pr/woodpecker Pipeline failed
* Added GiteaConfiguration
8 lines
224 B
C#
8 lines
224 B
C#
namespace Services.Gitea;
|
|
|
|
public class GiteaConfiguration
|
|
{
|
|
public string Owner { get; set; } = string.Empty;
|
|
public string Repo { get; set; } = string.Empty;
|
|
public string Branch { get; set; } = string.Empty;
|
|
} |