Sicherung

This commit is contained in:
Maier Stephan SI
2023-01-16 16:03:54 +01:00
parent 43297bb259
commit 63512e77aa
22 changed files with 1293 additions and 1218 deletions

View File

@@ -1,16 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FSI.BT.Tools.Settings
namespace FSI.BT.Tools.Settings
{
public class StringValue
{
public interface IStringValue
public interface IStringValue
{
string Value { get; set; }
}
public interface IStringValueCrypt
{
string Value { get; set; }
string ValueDeCrypt { get; set; }
}
}
}