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

16 lines
344 B
C#

using CustomEntityFoundation.Entities;
using EntityFrameworkCore.BootKit;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Bot.Rasa.Agents
{
public class RasaAgent : Entity, IDbRecord
{
[MaxLength(64)]
public String Name { get; set; }
}
}