Files
FSI.BT.IR.Tools/FSI.BT.Tools/Global/Settings/IStringValue.cs
Stephan Maier 647f938eee v1.2
2024-08-27 08:10:27 +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; }
}
}
}