13 lines
262 B
C#
13 lines
262 B
C#
using SzCore.DataObjects;
|
|
|
|
namespace SzCore;
|
|
|
|
public interface ISzFileManager
|
|
{
|
|
public string DataPath {get;}
|
|
public string DatasetsPath {get;}
|
|
|
|
public bool SaveFile(string path, string fileContent);
|
|
public string? LoadFile(string path);
|
|
}
|