mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-22 17:18:42 +08:00
7 lines
140 B
C#
7 lines
140 B
C#
namespace mRemoteNG.Config
|
|
{
|
|
public interface ISaver<in T>
|
|
{
|
|
void Save(T model, string propertyNameTrigger = "");
|
|
}
|
|
} |