mirror of
https://onedev.site.tesses.net/crosslang/crosslangdevstudio
synced 2026-02-08 09:15:45 +00:00
10 lines
179 B
C#
10 lines
179 B
C#
namespace CrossLangDevStudio.ViewModels;
|
|
|
|
interface ISavable
|
|
{
|
|
string FilePath { get; }
|
|
bool Modified { get; set; }
|
|
void Save();
|
|
|
|
void SaveRecovery(string path);
|
|
} |