2022-06-12 19:42:47 +00:00
|
|
|
|
namespace DataModel.Database;
|
|
|
|
|
|
|
|
|
|
public sealed class Translation
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public TextElement TextElement { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Culture { get; set; } = "en-US";
|
|
|
|
|
|
|
|
|
|
public string Text { get; set; } = string.Empty;
|
2022-09-21 20:52:17 +00:00
|
|
|
|
|
|
|
|
|
public bool TranslateManual { get; set; } = false;
|
2022-06-12 19:42:47 +00:00
|
|
|
|
}
|