This commit is contained in:
Stephan Maier
2024-08-27 08:10:27 +02:00
parent eb5c2fa502
commit 647f938eee
617 changed files with 73086 additions and 7137 deletions

View File

@@ -0,0 +1,16 @@
namespace FSI.BT.Tools.Global.Settings
{
public class StringValue
{
public interface IStringValue
{
string Value { get; set; }
}
public interface IStringValueCrypt
{
string Value { get; set; }
string ValueDeCrypt { get; set; }
}
}
}