Files
FA/Services/Gitea/GiteaConfiguration.cs
Piotr Kus ed0d01e924
Some checks failed
ci/woodpecker/pr/woodpecker Pipeline failed
* Extended GiteaSerive
* Added GiteaConfiguration
2026-01-23 09:02:11 +01:00

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;
}