Rename SzLib to SzCore

This commit is contained in:
2026-01-23 23:41:16 -06:00
parent f78f8fdf57
commit 7f232254b1
17 changed files with 29 additions and 29 deletions

12
SzCore/ISzFileManager.cs Normal file
View File

@@ -0,0 +1,12 @@
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);
}