start a big rework

This commit is contained in:
Schedel Pascal
2024-06-19 15:01:27 +02:00
parent c9216ac79b
commit 77ddd2a72a
25 changed files with 599 additions and 1697 deletions

View File

@@ -0,0 +1,13 @@
using Pilz.Cryptography;
namespace Pilz.Updating.Administration.Integrations;
public class GitLabSnippetConfig
{
public bool Enabled { get; set; }
public string GitLabUrl { get; set; }
public SecureString PersonalAccessToken { get; set; }
public int ProjectId { get; set; }
public int SnippetId { get; set; }
public string SnippetFilePath { get; set; }
}