using System.ComponentModel.DataAnnotations; namespace DataModel.Database; public sealed class TextElement { [Key] public int Id { get; set; } public Guid UniqueId { get; set; } public string Name { get; set; } = string.Empty; public string Code { get; set; } = string.Empty; public bool IsMultiLine { get; set; } = false; public Section Section { get; set; } public List Translations { get; set; } = new(); }