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