Get way further

This commit is contained in:
2025-10-22 17:31:32 -05:00
parent 7c4f85ec21
commit 27f301fe48
39 changed files with 2028 additions and 123 deletions

View File

@@ -1,5 +1,10 @@
namespace CrossLangDevStudio.ViewModels;
interface ISavable
{
string FilePath { get; }
bool Modified { get; set; }
void Save();
void SaveRecovery(string path);
}