14 lines
384 B
C#
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; }
|
|
}
|