Files
Pilz.Updating/Pilz.Updating.Administration/Integrations/GitLabSnippetConfig.cs
2024-06-19 15:01:27 +02:00

14 lines
384 B
C#

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