add storage functionality and appdata model

This commit is contained in:
Вячеслав 2026-01-01 05:10:44 +05:00
parent b4ce64456e
commit c29658e7e4
3 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,9 @@
using MetaforceInstaller.Core.Models;
namespace MetaforceInstaller.Core.Intefaces;
public interface IStorageService
{
AppData Load();
void Save(AppData data);
}