using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; namespace BotSharp.Platform.Models.Intents { public class IntentExpression { public IntentExpression() { Data = new List(); } [Required] [StringLength(36)] public String IntentId { get; set; } [ForeignKey("ExpressionId")] public List Data { get; set; } } }