BotSharp/Bot.Rasa/Intents/Intent.cs
2017-12-17 23:30:20 -06:00

15 lines
329 B
C#

using CustomEntityFoundation.Entities;
using EntityFrameworkCore.BootKit;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace Bot.Rasa.Intents
{
public class RasaIntent : Entity, IDbRecord
{
public String Name { get; set; }
}
}