Files
mRemoteNG/mRemoteV1/Config/ISaver.cs
2018-11-03 10:34:30 -05:00

7 lines
140 B
C#

namespace mRemoteNG.Config
{
public interface ISaver<in T>
{
void Save(T model, string propertyNameTrigger = "");
}
}