15 lines
448 B
C#
15 lines
448 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace DD.Persistence.Database.Entity;
|
|
|
|
public class ValuesIdentity
|
|
{
|
|
[Key, Comment("Дискриминатор системы"),]
|
|
public Guid DiscriminatorId { get; set; }
|
|
|
|
[Comment("Идентификаторы"), Column(TypeName = "jsonb")]
|
|
public string[] Identity { get; set; } = [];
|
|
}
|