Add local JSON account import and export

This commit is contained in:
Burak Kaan Köse
2026-04-18 15:55:15 +02:00
parent 2a93600ede
commit 00437bae4e
14 changed files with 443 additions and 48 deletions
@@ -0,0 +1,7 @@
namespace Wino.Core.Domain.Models.Accounts;
public sealed class WinoAccountSyncFileExportResult
{
public string JsonContent { get; init; } = string.Empty;
public WinoAccountSyncExportResult ExportResult { get; init; } = new();
}