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