24 lines
568 B
C#
24 lines
568 B
C#
namespace sh.actions.package_cleanup.Models;
|
|
|
|
/// <summary>
|
|
/// Konfiguration für Gitea-Verbindung
|
|
/// </summary>
|
|
public class GiteaConfig
|
|
{
|
|
/// <summary>
|
|
/// Basis-URL der Gitea-Instanz (z.B. https://git.example.com)
|
|
/// </summary>
|
|
public string GiteaUrl { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// API-Token für Authentifizierung
|
|
/// </summary>
|
|
public string ApiToken { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Owner/Username des Pakets
|
|
/// </summary>
|
|
public string Owner { get; set; } = string.Empty;
|
|
}
|
|
|