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,6 @@
namespace MetaforceInstaller.Core.Models;
public class AppData
{
public List<InstallationData> Installations { get; set; } = new();
}