Files

8 lines
238 B
C#
Raw Permalink Normal View History

2026-04-18 15:55:15 +02:00
namespace Wino.Core.Domain.Models.Accounts;
public sealed class WinoAccountSyncFileExportResult
{
public string JsonContent { get; init; } = string.Empty;
public WinoAccountSyncExportResult ExportResult { get; init; } = new();
}