16 lines
395 B
C#
16 lines
395 B
C#
using System.Security.Cryptography.X509Certificates;
|
|
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);
|
|
public bool DeleteFile(string path);
|
|
}
|