Files
FSI.BT.IR.Tools/FSI.BT.Tools/Settings/IStringValue.cs
Maier Stephan SI 63512e77aa Sicherung
2023-01-16 16:03:54 +01:00

17 lines
327 B
C#

namespace FSI.BT.Tools.Settings
{
public class StringValue
{
public interface IStringValue
{
string Value { get; set; }
}
public interface IStringValueCrypt
{
string Value { get; set; }
string ValueDeCrypt { get; set; }
}
}
}