5 lines
157 B
C#
5 lines
157 B
C#
public interface IDataService
|
|
{
|
|
bool SaveData<T>(string RelativePath, T Data, bool Encrypted);
|
|
T LoadData<T>(string RelativePath, bool Encrypted);
|
|
} |