This commit is contained in:
Drechsler, Meik
2025-10-15 14:56:07 +02:00
commit f563d78417
896 changed files with 654481 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using C4IT.Configuration;
using C4IT.Security;
namespace LiamTestTeams
{
public class cLiamTestTeamsConfig
{
public const string constRegPathConfig = @"Software\Consulting4IT GmbH\LIAM\LiamTestTeams";
[RegConfig]
public string Tenant = "";
[RegConfig]
public string ClientAppID = "";
[RegConfig]
public string ClientSecret = "";
public void Save(string Property = null)
{
cConfigRegistryHelper.Save(constRegPathConfig, this, Property);
}
public void Load()
{
cConfigRegistryHelper.Load(constRegPathConfig, this, true);
}
}
}