17 lines
327 B
C#
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; }
|
|
}
|
|
}
|
|
}
|