Files
FSI.BT.IR.Tools/FSI.BT.Tools/Global/Settings/IStringValue.cs
Maier Stephan SI 1c68b8f401 Sicherung
2023-04-17 07:07:49 +02:00

17 lines
334 B
C#

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; }
}
}
}