Files
FSI.BT.IR.Tools/FSI.BT.Tools/Settings/IStringValue.cs
Maier Stephan SI d01747f75a Sicherung
2023-01-02 04:33:49 +01:00

17 lines
294 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FSI.BT.Tools.Settings
{
public class StringValue
{
public interface IStringValue
{
string Value { get; set; }
}
}
}