MetaforceInstaller/MetaforceInstaller.Core/Intefaces/IStorageService.cs

9 lines
No EOL
173 B
C#

using MetaforceInstaller.Core.Models;
namespace MetaforceInstaller.Core.Intefaces;
public interface IStorageService
{
AppData Load();
void Save(AppData data);
}