using EntityFrameworkCore.BootKit; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Text; namespace Bot.Rasa.Entities { [Table("Bot_EntityType")] public class EntityType : DbRecord, IDbRecord { [Required] [StringLength(36)] public String AgentId { get; set; } [Required] [MaxLength(64)] public String Name { get; set; } [NotMapped] public List Values { get; set; } [ForeignKey("EntityTypeId")] public List Items { get; set; } } }