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
4 changed files with 4 additions and 4 deletions
Showing only changes of commit 35009dba7c - Show all commits

View File

@ -8,7 +8,7 @@ public sealed class Section
[Key]
public int Id { get; set; }
public Guid UniqueId { get; set; }
public Guid UniqueId { get; set; } = Guid.NewGuid();
public string Name { get; set; } = string.Empty;

View File

@ -8,7 +8,7 @@ public sealed class Setting
[Key]
public int Id { get; set; }
public Guid UniqueId { get; set; }
public Guid UniqueId { get; set; } = Guid.NewGuid();
public string Code { get; set; } = string.Empty;

View File

@ -8,7 +8,7 @@ public sealed class TextElement
[Key]
public int Id { get; set; }
public Guid UniqueId { get; set; }
public Guid UniqueId { get; set; } = Guid.NewGuid();
public string Name { get; set; } = string.Empty;

View File

@ -6,7 +6,7 @@ public sealed class Translation
{
public int Id { get; set; }
public Guid UniqueId { get; set; }
public Guid UniqueId { get; set; } = Guid.NewGuid();
public TextElement TextElement { get; set; } = new();