convert to C# & update config system

This commit is contained in:
2024-01-10 09:07:40 +01:00
parent 26d56f3e88
commit 0c0c5e82bc
24 changed files with 657 additions and 610 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Configuration
{
public interface ISettingsIdentifier
{
static abstract string Identifier { get; }
}
}