BotSharp/Bot.Rasa/Agents/Agent.cs

21 lines
507 B
C#
Raw Normal View History

2017-12-18 13:31:15 +00:00
using Bot.Rasa.Intents;
using CustomEntityFoundation.Entities;
2017-12-18 05:30:20 +00:00
using EntityFrameworkCore.BootKit;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
2017-12-18 13:31:15 +00:00
using System.ComponentModel.DataAnnotations.Schema;
2017-12-18 05:30:20 +00:00
using System.Text;
namespace Bot.Rasa.Agents
{
public class RasaAgent : Entity, IDbRecord
{
[MaxLength(64)]
public String Name { get; set; }
2017-12-18 13:31:15 +00:00
[ForeignKey("AgentId")]
public List<RasaIntent> Intents { get; set; }
2017-12-18 05:30:20 +00:00
}
}