using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace DD.Persistence.Database.Entity; public class DataScheme { [Key, Comment("Дискриминатор системы"),] public Guid DiscriminatorId { get; set; } [Comment("Наименования полей в порядке индексации"), Column(TypeName = "jsonb")] public string[] PropNames { get; set; } = []; }