Resolve "ASCII export and import for Git" #83

Merged
thorsten merged 30 commits from 48-ascii-export-and-import-for-git into main 2023-02-12 12:55:07 +00:00
Showing only changes of commit 7676bea101 - Show all commits

View File

@ -66,7 +66,7 @@ public sealed class DataContext : DbContext, IDataContext
#endregion
}
#region Export and import data structures
#region Export and import
private readonly record struct JsonData(
IEnumerable<JsonSetting> Settings,
@ -137,8 +137,6 @@ public sealed class DataContext : DbContext, IDataContext
bool TranslateManual,
JsonUniqueId TextElementUniqueId
);
#endregion
public async Task ExportAsync(string path)
{
@ -158,4 +156,6 @@ public sealed class DataContext : DbContext, IDataContext
Translations = this.Translations.Select(n => n.ToJsonTranslation()),
}, jsonSettings);
}
#endregion
}