mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 12:08:37 +08:00
9 lines
165 B
C#
9 lines
165 B
C#
namespace mRemoteNG.Config.DataProviders
|
|
{
|
|
public interface IDataProvider<TFormat>
|
|
{
|
|
TFormat Load();
|
|
|
|
void Save(TFormat contents);
|
|
}
|
|
} |