12 lines
268 B
C#
12 lines
268 B
C#
|
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;
|
|||
|
}
|